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/scripts/submodules.sh

24 lines
491 B

#!/bin/bash
echo "Updating submodules..."
# Update top-level modules as a baseline
git submodule update --init --recursive
# Use fixed master branch of circle-stdlib then re-update
cd external/circle-stdlib/
git checkout 3bd135d
git submodule update --init --recursive
cd -
# Optional update submodules explicitly
cd external/circle-stdlib/libs/circle
git checkout 4155f43
cd -
# Use fixed master branch of Synth_Dexed
cd external/Synth_Dexed/
git checkout c9f5274
cd -
echo " Done."