From 3eb70c5251c4cb430a112dc0240b959f06450419 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Thu, 18 Apr 2013 18:37:34 -0400 Subject: [PATCH] cros-repo: add -e email option --- .bin/cros-repo | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 ;; -- 2.39.5