mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-03 11:50:29 +00:00
tagscript: refactor
This commit is contained in:
parent
985fad9e32
commit
d96736c19e
@ -44,10 +44,9 @@ if [ -z "$1" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
eval $(parse_version "$1")
|
eval $(parse_version "$1")
|
||||||
|
ngrep () { (echo "$2" | grep -e "$1" >/dev/null); }
|
||||||
|
|
||||||
ngrep () { grep -e "$1" >/dev/null; }
|
if ! ($debug || ngrep '-s' "$opts"); then
|
||||||
|
|
||||||
if ! $debug && ! (echo "$opts" | ngrep '-s'); then
|
|
||||||
cat >&2 <<EOF
|
cat >&2 <<EOF
|
||||||
You've asked me to tag a release but haven't asked to me sign it by
|
You've asked me to tag a release but haven't asked to me sign it by
|
||||||
passing -s. I'll do this if you really want, but it's a bad idea if
|
passing -s. I'll do this if you really want, but it's a bad idea if
|
||||||
@ -84,7 +83,7 @@ fi
|
|||||||
|
|
||||||
echo "Saving uncommitted changes before tagging..." >&2
|
echo "Saving uncommitted changes before tagging..." >&2
|
||||||
ret=$(git stash save "Save uncommitted changes before tagging.")
|
ret=$(git stash save "Save uncommitted changes before tagging.")
|
||||||
if (echo "$ret" | ngrep '^Saved'); then
|
if (ngrep '^Saved' "$ret"); then
|
||||||
stash_saved=1
|
stash_saved=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user