Created
November 14, 2018 10:50
-
-
Save kelegorm/180d01cb90a868b3ca9749fbf0c91019 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
check_update () { | |
local HGSTATUS=`hg status` | |
if [[ HGSTATUS = "M res/tags.csv" ]]; then | |
hg commit -m "tags.csv updated" | |
# hg push | |
return | |
fi | |
echo "nothing changed or changes are unexpected" | |
} | |
check_update |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment