op.sh: fix submodule cloning for older git version (#35840)

Update op.sh
This commit is contained in:
hungpham3112
2025-07-30 01:35:50 +07:00
committed by GitHub
parent 1cadcf6192
commit 69f4b4a6b7
+1 -1
View File
@@ -231,7 +231,7 @@ function op_setup() {
echo "Getting git submodules..."
st="$(date +%s)"
if ! git submodule update --filter=blob:none --jobs 4 --init --recursive; then
if ! git submodule update --jobs 4 --init --recursive; then
echo -e "[${RED}${NC}] Getting git submodules failed!"
loge "ERROR_GIT_SUBMODULES"
return 1