make git invocation in build.bqn working-directory-independent

This commit is contained in:
dzaima 2022-12-25 13:44:09 +02:00
parent 326d54e130
commit f6b00f97ee

View File

@ -270,7 +270,7 @@ updateSubmodule ← {
"Local"¯5𝕩? @;
𝕩<done? @;
done <𝕩
SH "git", "submodule", "update", "--init", AtRoot 𝕩
SH "git", "-C", rootDir, "submodule", "update", "--init", AtRoot 𝕩
}
}