From: Oleg Broytman Date: Tue, 20 May 2014 00:57:30 +0000 (+0400) Subject: Allow the script to be run only in the origin directory X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=commitdiff_plain;h=67154f51c5ef423c001af913f421be5e99083838 Allow the script to be run only in the origin directory --- diff --git a/update b/update index 9d996d8..552c1e5 100755 --- a/update +++ b/update @@ -1,8 +1,23 @@ #! /bin/sh -current="`git config --get remote.current.url`" && +current="`git config --get --path remote.current.url`" +origin="`git config --get --path remote.origin.url`" -git pull --ff-only current master && git push web && +if [ -n "$origin" ]; then + if [ -n "$current" ]; then + echo "UNKNOWN ERROR" + else + echo "This script must be run in the origin directory: $origin" + fi >&2 + exit 1 +elif [ -z "$current" ]; then + echo "UNKNOWN ERROR" >&2 + exit 1 +fi -cd "$current" && -exec git pull origin +git pull --ff-only current master && + +web="`git config --get --path remote.web.url`" && +[ -n "$web" ] && git push web + +cd "$current" && exec git pull origin