kodev: fix grep: warning: stray \ before - (#10071)

New warning in 3.8.
This commit is contained in:
yparitcher
2023-02-03 07:45:23 -05:00
committed by GitHub
parent 15fb73384f
commit 731b802a0e

2
kodev
View File

@@ -40,7 +40,7 @@ function assert_ret_zero() {
}
function check_submodules() {
if git submodule status | grep -qE '^\-'; then
if git submodule status | grep -qE '^-'; then
kodev-fetch-thirdparty
fi
}