summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-10-17 12:47:30 -0700
committerYamaArashi <shadow962@live.com>2016-10-17 12:47:30 -0700
commit44971ce9acf2b043b4f44fe943f791712ec587f4 (patch)
tree5a839e2e1403bff6c8ca306bda640265381fe9b4
parentba2e0b47483108c9013e7d4ca5cc383a9a14d425 (diff)
don't have compare.sh show warnings
-rwxr-xr-xcompare.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/compare.sh b/compare.sh
index c6569958f..2206943da 100755
--- a/compare.sh
+++ b/compare.sh
@@ -1,30 +1,30 @@
#!/bin/sh
echo "Checking Ruby 1.0"
make tidy >/dev/null
-make ruby >/dev/null
+make ruby >/dev/null 2>/dev/null
sha1sum -c ruby.sha1
echo "Checking Ruby 1.1"
make tidy >/dev/null
-make ruby_rev1 >/dev/null
+make ruby_rev1 >/dev/null 2>/dev/null
sha1sum -c ruby_rev1.sha1
echo "Checking Ruby 1.2"
make tidy >/dev/null
-make ruby_rev2 >/dev/null
+make ruby_rev2 >/dev/null 2>/dev/null
sha1sum -c ruby_rev2.sha1
echo "Checking Sapphire 1.0"
make tidy >/dev/null
-make sapphire >/dev/null
+make sapphire >/dev/null 2>/dev/null
sha1sum -c sapphire.sha1
echo "Checking Sapphire 1.1"
make tidy >/dev/null
-make sapphire_rev1 >/dev/null
+make sapphire_rev1 >/dev/null 2>/dev/null
sha1sum -c sapphire_rev1.sha1
echo "Checking Sapphire 1.2"
make tidy >/dev/null
-make sapphire_rev2 >/dev/null
+make sapphire_rev2 >/dev/null 2>/dev/null
sha1sum -c sapphire_rev2.sha1