0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-21 21:23:08 -05:00
LibreWolf/scripts/update-settings-module.sh
2023-11-14 20:13:39 +01:00

12 lines
183 B
Bash
Executable file

#!/usr/bin/env bash
set -eu
cd settings
git checkout master
git pull origin master
cd ..
git add settings
git commit -m "Updated settings submodule to the latest version"
git push