Release 1.2

This commit is contained in:
Steve Jenkins 2019-07-10 06:53:15 -07:00
parent cdcb72e1bf
commit f93edce0ff

View File

@ -5,7 +5,7 @@
# pihole-cloudsync # pihole-cloudsync
# Helper script to keep multiple Pi-holes' lists synchronized via Git # Helper script to keep multiple Pi-holes' lists synchronized via Git
# Version 1.1 - July 9, 2019 - Steve Jenkins (stevejenkins.com) # Version 1.2 - July 10, 2019 - Steve Jenkins (stevejenkins.com)
# SETUP # SETUP
# Follow the instructions in the README to set up your own private Git # Follow the instructions in the README to set up your own private Git
@ -74,7 +74,7 @@ push () {
pull () { pull () {
cd $personal_git_dir || exit cd $personal_git_dir || exit
CHANGED=$($SUDO git --work-tree=$personal_git_dir status --porcelain) CHANGED=$($SUDO git remote update && git --work-tree=$personal_git_dir status --porcelain)
if [ -n "${CHANGED}" ]; then if [ -n "${CHANGED}" ]; then
echo 'Remote Git repo is different than local Pi-hole lists. Updating local lists...'; echo 'Remote Git repo is different than local Pi-hole lists. Updating local lists...';
# Remove -q option if you don't want to run in "quiet" mode # Remove -q option if you don't want to run in "quiet" mode