mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-21 21:23:08 -05:00
12 lines
183 B
Bash
Executable file
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
|