Skip to content

Commit b9a1878

Browse files
committed
Build: Fix submodule update with space in git ref dir
1 parent 75ed826 commit b9a1878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/build/update-submodules.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
exec_and_check('git fetch --quiet --all', "Got fetch in $modrefdir failed.");
5757
chdir $back;
5858
}
59-
$msg = qx{git submodule --quiet update --reference $modrefdir $smodpath 2>&1};
59+
$msg = qx{git submodule --quiet update --reference "$modrefdir" $smodpath 2>&1};
6060
check_update_ok($?, $msg);
6161
}
6262
}

0 commit comments

Comments
 (0)