various scripts I use to make my life easier

fixed escaping vars

+4 -1
+4 -1
post-receive
··· 23 23 } 24 24 25 25 # make sure the sync occurs in the background 26 - nohub bash -c " it push --mirror "$REPO_URL" >> "$LOGFILE" 2>&1" > /dev/nul 2>&1 & 26 + nohup bash -c " 27 + cd \"$REPO_PATH\" || exit 1 28 + git push --mirror \"$REPO_URL\" >> \"$LOGFILE\" 2>&1 29 + " > /dev/nul 2>&1 & 27 30 28 31 # vim: filetype=sh 29 32