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

Unified Diff: bin/ac

Issue 1139033005: Make the c and ac scripts work with sh and without bin in PATH (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 7 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 | bin/c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/ac
diff --git a/bin/ac b/bin/ac
index 05fd6051455534232efdb58d0b942ae1f6e3bd58..30e95346124e4d10d4aa23502dffe2adbcc5eee3 100755
--- a/bin/ac
+++ b/bin/ac
@@ -6,7 +6,7 @@ BRANCH=$(git branch | grep \* | cut -d" " -f 2)
CLEAN=${CLEAN-clean}
SAMPLES=100
-if [ $BRANCH == $CLEAN ]; then
+if [ "$BRANCH" = "$CLEAN" ]; then
echo "Comparing $BRANCH to itself."
exit 1
fi
@@ -23,4 +23,4 @@ git checkout $BRANCH
platform_tools/android/bin/android_ninja -t Release nanobench
platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $BRANCH.log
-compare $CLEAN.log $BRANCH.log
+./bin/compare $CLEAN.log $BRANCH.log
« no previous file with comments | « no previous file | bin/c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698