source: pyenvjasmine/pyenvjasmine/envjasmine/bin/run_coverage.sh@ 19:ab5f65372038

Last change on this file since 19:ab5f65372038 was 19:ab5f65372038, checked in by Borja Lopez <borja@…>, 9 years ago

Imported latest envjasmine version, the initial import from darcs had the wrong version

File size: 315 bytes
Line 
1#!/usr/bin/env bash
2
3cd "`dirname \"$0\"`"
4PWD=$(pwd)
5
6CMD="java -Duser.timezone=\"US/Eastern\" -Dfile.encoding=utf-8 -jar \"$PWD/../lib/rhino/js.jar\" \"$PWD/../lib/jscover/envjasmine-sonar-coverage-runner.js\" --environment=\"UNIX\" "
7
8for (( i=1 ; i < $#+1 ; i=$i+1 )) do
9 CMD="$CMD \"${!i}\""
10done
11
12eval $CMD
Note: See TracBrowser for help on using the repository browser.