0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 05:33:03 -05:00
LibreWolf/scripts/update-settings-module.sh

13 lines
183 B
Bash
Raw Permalink Normal View History

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