1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Fix update-submodules script

This commit is contained in:
Raymond Hill 2021-09-07 13:50:52 -04:00
parent 68b15ed5d8
commit 8e296dd671
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -7,7 +7,7 @@ set -e
echo "*** Update submodules"
git submodule update --remote
if [ `git diff --quiet ./submodules/` ]; then
if [[ $(git diff ./submodules/) ]]; then
git add -u submodules/
git commit -m 'Update submodules'
git push origin master