You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MiniDexed/submod.sh

28 lines
543 B

#!/bin/bash
set -ex
2 months ago
# Update top-level modules as a baseline
git submodule update --init --recursive
2 months ago
# Use fixed master branch of circle-stdlib then re-update
cd circle-stdlib/
2 months ago
git reset --hard
git checkout 3bd135d
git submodule update --init --recursive
cd -
2 months ago
# Optional update submodules explicitly
cd circle-stdlib/libs/circle
2 months ago
git reset --hard
git checkout tags/Step49
cd -
cd circle-stdlib/libs/circle-newlib
#git checkout develop
cd -
2 months ago
# Use fixed master branch of Synth_Dexed
cd Synth_Dexed/
2 months ago
git reset --hard
git checkout c9f5274
cd -