From 09f032b2e851b9204b1c3a72d933fec802b2ed58 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 13 Feb 2024 10:56:53 +1000 Subject: [PATCH] Ensure PyOxidizer checked out when bundling --- build/ninja_gen/src/git.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ninja_gen/src/git.rs b/build/ninja_gen/src/git.rs index 5499f8946..a1ec6c73f 100644 --- a/build/ninja_gen/src/git.rs +++ b/build/ninja_gen/src/git.rs @@ -18,7 +18,7 @@ impl BuildAction for SyncSubmodule { if self.offline_build { "echo OFFLINE_BUILD is set, skipping git repository update for $path" } else { - "git -c protocol.file.allow=always submodule update --init $path" + "git -c protocol.file.allow=always submodule update --checkout --init $path" } }