Add git submodule update after cloning repository in appimage_maker.sh

This commit is contained in:
XargonWan 2025-03-31 09:01:02 +09:00
parent 088b3ef255
commit ead6b13ea1

View file

@ -38,6 +38,7 @@ fi
if [ ! -d "$CLONE_DIR" ]; then
echo "Cloning repository: $REPO_URL in $CLONE_DIR"
git clone "$REPO_URL" "$CLONE_DIR"
git submodule update --init --recursive
fi
pushd "$CLONE_DIR" > /dev/null