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

27 lines
549 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/
3 months ago
git reset --hard
git checkout tags/v16.7
git submodule update --init --recursive
cd -
#
# 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 -
#
# Use fixed master branch of Synth_Dexed
cd Synth_Dexed/
3 months ago
git reset --hard
git checkout c9f5274
3 months ago
cd -