Fix 'git submodule' after git security update

This commit is contained in:
Damien Elmes 2022-12-31 02:17:11 +10:00
parent e9428449ff
commit 30bf5f8b39
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ pub struct SyncSubmodule {
impl BuildAction for SyncSubmodule {
fn command(&self) -> &str {
"git submodule update --init $path"
"git -c protocol.file.allow=always submodule update --init $path"
}
fn files(&mut self, build: &mut impl build::FilesHandle) {