Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Unified Diff: git-crup

Issue 10830108: Fix handling of optional argument to -j. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git-crup
===================================================================
--- git-crup (revision 149323)
+++ git-crup (working copy)
@@ -42,13 +42,22 @@
while test $# -ne 0; do
case "$1" in
+ -j[0-9]*)
+ j=$(echo "$1" | cut -c3-)
+ ;;
+ --jobs=[0-9]*)
+ j=$(echo "$1" | cut -c8-)
+ ;;
cmp 2012/08/02 17:21:53 increase indent on lines 49-50 by 1 space
szager 2012/08/02 17:23:50 Done.
-j|--jobs)
- if test -n "$2"; then
- j="$2"
- shift
- else
- j=0
- fi
+ case "$2" in
+ ''|-*)
+ j=0
+ ;;
+ *)
+ j="$2"
+ shift
+ ;;
+ esac
;;
-n|--dry-run)
ECHO=echo
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698