X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=check-combined-unaffected.sh;fp=check-combined-unaffected.sh;h=0000000000000000000000000000000000000000;hb=3123ca57f71d145bb5bcc4a2f754d3dff3225346;hp=de1721eb0bba0791066d70484a1e3e7cc7891b5e;hpb=26ee953643ccd2d32e38e6b60b20e6a01c1dc9ba;p=dygraphs.git diff --git a/check-combined-unaffected.sh b/check-combined-unaffected.sh deleted file mode 100755 index de1721e..0000000 --- a/check-combined-unaffected.sh +++ /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