Merge pull request #565 from danvk/gulp
[dygraphs.git] / check-combined-unaffected.sh
diff --git a/check-combined-unaffected.sh b/check-combined-unaffected.sh
deleted file mode 100755 (executable)
index de1721e..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-# Ensures that dygraph-combined.js is unaffected.
-# Helpful for pull requests, where this is a common mistake.
-
-grep 'var' dygraph-combined.js > /dev/null
-if [ $? -eq 0 ]; then
-  echo 'Please revert changes to dygraph-combined.js' >&2
-  echo 'You can do this by running:  ' >& 2
-  echo '' >& 2
-  echo '    git checkout dygraph-combined.js' >&2
-  echo '' >& 2
-  exit 1
-fi
-
-exit 0