Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cb-tumblebug
Submodule cb-tumblebug updated 133 files
10 changes: 10 additions & 0 deletions update-tumblebug-submodule.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/bin/bash

# Initialize and update submodule if not already done
if [ ! -d "cb-tumblebug/.git" ]; then
echo "Initializing and updating CB-Tumblebug submodule..."
git submodule update --init --recursive cb-tumblebug
if [ $? -ne 0 ]; then
echo "Error: Failed to initialize submodule"
exit 1
fi
fi

cd cb-tumblebug || { echo "Error: Failed to enter cb-tumblebug directory."; exit 1; }

# Fetch all tags from the remote repository
Expand Down