aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/ac
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ac')
-rwxr-xr-xbin/ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ac b/bin/ac
index 05fd605145..30e9534612 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