0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 13:43:04 -05:00
LibreWolf/scripts/update_settings.sh
2023-11-14 19:53:25 +01:00

22 lines
559 B
Bash

#!/bin/bash
# Navigate to the root directory of your repository
cd /path/to/your/repo
# Update the submodule
echo "Checking for updates in the settings submodule..."
cd settings
git checkout master
git pull origin master
cd ..
# Check if there are any changes
if [ -n "$(git diff --submodule)" ]; then
echo "Updates found in the submodule. Committing them..."
git add settings
git commit -m "Updated settings submodule to the latest version"
git push
echo "Updates committed and pushed."
else
echo "No updates in the submodule."
fi