aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/c')
-rwxr-xr-xbin/c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/c b/bin/c
index 129a4e142b..6e3bd6e185 100755
--- a/bin/c
+++ b/bin/c
@@ -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
ninja -C out/Release nanobench
out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
-compare $CLEAN.log $BRANCH.log
+./bin/compare $CLEAN.log $BRANCH.log