Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/MiniDexed/blame/commit/baeb60bbe93e0dc2a3bd9aeb0ec746c49b561bb1/submod.sh You should set ROOT_URL correctly, otherwise the web may not work correctly.
MiniDexed/submod.sh

28 lines
543 B

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