From 69b78e1b04e621ff3825ecdcfd56da626027df11 Mon Sep 17 00:00:00 2001 From: probonopd Date: Mon, 21 Apr 2025 11:18:20 +0200 Subject: [PATCH] Use the same versions of everything as in main to see if that solves crackle --- submod.sh | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/submod.sh b/submod.sh index 6685bef..2e2f1a8 100755 --- a/submod.sh +++ b/submod.sh @@ -1,27 +1,24 @@ #!/bin/bash set -ex - +# # Update top-level modules as a baseline git submodule update --init --recursive - +# # Use fixed master branch of circle-stdlib then re-update cd circle-stdlib/ -git reset --hard -git checkout 1111eee # Matches Circle Step49 +git checkout 3bd135d git submodule update --init --recursive cd - - +# # Optional update submodules explicitly -#cd circle-stdlib/libs/circle -#git reset --hard -#git checkout tags/Step49 -#cd - -#cd circle-stdlib/libs/circle-newlib +cd circle-stdlib/libs/circle +git checkout tags/Step49 +cd - +cd circle-stdlib/libs/circle-newlib #git checkout develop -#cd - - +cd - +# # Use fixed master branch of Synth_Dexed cd Synth_Dexed/ -git reset --hard git checkout c9f5274 cd -