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

Unified Diff: gce/uploader_iteration.sh

Issue 890253002: [chrome-devtools-frontend] Work around presence of superfluous "trunk" dir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chrome-devtools-frontend
Patch Set: Created 5 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: gce/uploader_iteration.sh
diff --git a/gce/uploader_iteration.sh b/gce/uploader_iteration.sh
index 6ed43a3a24c4b1c01178abad3b1da23453fa8ce9..9003ea0cc2b7a51837e4b8e838fbfc1629e3b160 100755
--- a/gce/uploader_iteration.sh
+++ b/gce/uploader_iteration.sh
@@ -86,7 +86,9 @@ for REVISION in $REVISION_LIST; do
fi
git reset --hard $REVISION_COMMIT || exit $EXIT_BLINK_UPDATE
- DEVTOOLS_GYP=$(find . -type f -name devtools.gyp)
+ # Exclude "trunk" to work around branches that accidentally have a second
+ # copy of Blink sources inside it. See http://crbug.com/450975
+ DEVTOOLS_GYP=$(find . -type f -name devtools.gyp -not -path "*/trunk/*")
if [ -z "$DEVTOOLS_GYP" ]; then
exit $EXIT_DEVTOOLS_GYP_FILE
fi
« 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