1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-08-31 16:19:39 +02:00
uBlock/tools/update-submodules.sh
2021-07-31 17:34:25 -04:00

18 lines
362 B
Bash
Executable File

#!/usr/bin/env bash
#
# This script assumes a linux environment
set -e
echo "*** Update submodules"
git submodule update --remote
if [ `git diff --quiet ./submodules/` ]; then
git add -u submodules/
git commit -m 'Update submodules'
git push origin master
echo "*** Submodules updated"
else
echo "*** Submodules are already up to date"
fi