mirror of https://github.com/probonopd/MiniDexed
25 lines
528 B
25 lines
528 B
2 years ago
|
#!/bin/bash
|
||
|
set -ex
|
||
2 years ago
|
#
|
||
|
# Update top-level modules as a baseline
|
||
2 years ago
|
git submodule update --init --recursive
|
||
2 years ago
|
#
|
||
|
# Use fixed master branch of circle-stdlib then re-update
|
||
1 year ago
|
cd external/circle-stdlib/
|
||
1 year ago
|
git checkout 3bd135d
|
||
2 years ago
|
git submodule update --init --recursive
|
||
2 years ago
|
cd -
|
||
2 years ago
|
#
|
||
|
# Optional update submodules explicitly
|
||
1 year ago
|
cd external/circle-stdlib/libs/circle
|
||
1 year ago
|
git checkout 4155f43
|
||
2 years ago
|
cd -
|
||
1 year ago
|
cd external/circle-stdlib/libs/circle-newlib
|
||
2 years ago
|
#git checkout develop
|
||
2 years ago
|
cd -
|
||
2 years ago
|
#
|
||
|
# Use fixed master branch of Synth_Dexed
|
||
1 year ago
|
cd external/Synth_Dexed/
|
||
2 years ago
|
git checkout c9f5274
|
||
|
cd -
|