mirror of https://github.com/probonopd/MiniDexed
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.
24 lines
492 B
24 lines
492 B
#!/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 checkout 695ab4a
|
|
git submodule update --init --recursive
|
|
cd -
|
|
#
|
|
# Optional update submodules explicitly
|
|
cd circle-stdlib/libs/circle
|
|
git checkout fe09c4b
|
|
cd -
|
|
cd circle-stdlib/libs/circle-newlib
|
|
#git checkout develop
|
|
cd -
|
|
#
|
|
# Use fixed master branch of Synth_Dexed
|
|
cd Synth_Dexed/
|
|
git checkout c9f5274
|
|
cd -
|
|
|