From: Mike Frysinger Date: Thu, 18 Apr 2013 22:37:34 +0000 (-0400) Subject: cros-repo: add -e email option X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3eb70c5251c4cb430a112dc0240b959f06450419;p=home.git cros-repo: add -e email option --- diff --git a/.bin/cros-repo b/.bin/cros-repo index d718af5..2a66528 100755 --- a/.bin/cros-repo +++ b/.bin/cros-repo @@ -12,6 +12,7 @@ usage() { -r patch to reference repo (e.g. ~/chromiumos/) -g -m + -e Operates on the repo in ${PWD} EOF @@ -48,7 +49,6 @@ while [[ $# -gt 0 ]] ; do shift ;; -r) - REF=$(realpath "${2:-$(echo ~/chromiumos)}") shift ;; @@ -60,6 +60,10 @@ while [[ $# -gt 0 ]] ; do MANIFEST_NAME="${2%.xml}.xml" shift ;; + -e) + email=$2 + shift + ;; *) usage ;;