Index: bin/c |
diff --git a/bin/c b/bin/c |
index 6e3bd6e1853e604cc1e32dfbd5aa05037cca09da..fca46d40f6ab0693401e4b33295ddc1e36359da6 100755 |
--- a/bin/c |
+++ b/bin/c |
@@ -13,14 +13,14 @@ fi |
if [ ! -f $CLEAN.log ]; then |
git checkout $CLEAN |
- ./gyp_skia >/dev/null |
+ python gyp_skia >/dev/null |
ninja -C out/Release nanobench |
out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log |
fi |
git checkout $BRANCH |
-./gyp_skia >/dev/null |
+python gyp_skia >/dev/null |
ninja -C out/Release nanobench |
out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log |
-./bin/compare $CLEAN.log $BRANCH.log |
+python bin/compare $CLEAN.log $BRANCH.log |