0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2025-01-18 10:22:30 -05:00
LibreWolf/scripts/update-settings-module.sh

13 lines
183 B
Bash
Raw Normal View History

2023-11-14 20:13:39 +01:00
#!/usr/bin/env bash
2023-11-14 19:53:25 +01:00
2023-11-14 20:13:39 +01:00
set -eu
2023-11-14 19:53:25 +01:00
cd settings
git checkout master
git pull origin master
cd ..
2023-11-14 20:13:39 +01:00
git add settings
git commit -m "Updated settings submodule to the latest version"
git push