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

Unified Diff: crup-runner.sh

Issue 12051022: Add a heuristic to skip git checkouts not managed by crup (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 11 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: crup-runner.sh
diff --git a/crup-runner.sh b/crup-runner.sh
index 987dcc2939f6556686ff1746cbc681fa5e737f15..7f64d9e4aec80c1b544a71a8fae6e5d2e8c87763 100755
--- a/crup-runner.sh
+++ b/crup-runner.sh
@@ -63,6 +63,11 @@ dir="$1"
solution="${1%%/*}"
cd "$solution"
+if ! grep -q -s "The Chromium Authors" ".git/description"; then
szager1 2013/01/23 17:22:46 This stanza should go in the 'if' clause below: i
jochen (gone - plz use gerrit) 2013/01/23 17:55:51 Done.
+ # Skip git checkouts not managed by crup.
+ exit 0
+fi
+
if [ "$solution" = "$1" ]; then
# Don't "pull" if checkout is not on a named branch
shift
« 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