diff options
| author | Misko Hevery | 2011-04-21 15:12:53 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2011-06-08 13:46:39 -0700 | 
| commit | 4295b3dded510affe75f7fe6b56f4747385b864c (patch) | |
| tree | 8d7f1a5183dbfdd404abc4053a0ee0d84d89ef72 /test.sh | |
| parent | a23d15ad3ad8f0eb52ffc4b0ac86ec358ae3dfa8 (diff) | |
| download | angular.js-4295b3dded510affe75f7fe6b56f4747385b864c.tar.bz2 | |
Allow disabling of shell scripts without changing eclipse configuration
Diffstat (limited to 'test.sh')
| -rwxr-xr-x | test.sh | 9 | 
1 files changed, 3 insertions, 6 deletions
| @@ -1,8 +1,5 @@  #!/bin/bash -tests=$1 -if [[ $tests = "" ]]; then -  tests="all" +if [ ! -e test.dissable ]; then +  java -jar lib/jstestdriver/JsTestDriver.jar --tests all $@ +  #java -jar lib/jstestdriver/JsTestDriver.jar --tests all --config jsTestDriver-jquery.conf $@  fi - -java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" -#java -jar lib/jstestdriver/JsTestDriver.jar --tests "$tests" --config jsTestDriver-jquery.conf | 
