diff options
author | Dierk König <dierk.koenig@canoo.com> | 2015-11-18 15:07:09 +0100 |
---|---|---|
committer | Dierk König <dierk.koenig@canoo.com> | 2015-11-18 15:07:09 +0100 |
commit | fa6dce676590c83bc84d130e1241cf585f88a469 (patch) | |
tree | 5a6227a8f7417a4cca0a522fe3e9ecf83bcc469a /gradlew | |
parent | 59e5aa6a100ad84dd16545d8ef35a80b0af35195 (diff) | |
parent | da9a1b100639e7eb5a7986952f5a1f3ba0d675e6 (diff) | |
download | frege-gradle-plugin-fa6dce676590c83bc84d130e1241cf585f88a469.tar.gz frege-gradle-plugin-fa6dce676590c83bc84d130e1241cf585f88a469.tar.bz2 frege-gradle-plugin-fa6dce676590c83bc84d130e1241cf585f88a469.zip |
Merge pull request #27 from breskeby/integ-test-infra
Add infrastructure for having integration tests
Diffstat (limited to 'gradlew')
-rwxr-xr-x | gradlew | 10 |
1 files changed, 3 insertions, 7 deletions
@@ -42,11 +42,6 @@ case "`uname`" in ;; esac -# For Cygwin, ensure paths are in UNIX format before anything is touched. -if $cygwin ; then - [ -n "$JAVA_HOME" ] && JAVA_HOME=`cygpath --unix "$JAVA_HOME"` -fi - # Attempt to set APP_HOME # Resolve links: $0 may be a link PRG="$0" @@ -61,9 +56,9 @@ while [ -h "$PRG" ] ; do fi done SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >&- +cd "`dirname \"$PRG\"`/" >/dev/null APP_HOME="`pwd -P`" -cd "$SAVED" >&- +cd "$SAVED" >/dev/null CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar @@ -114,6 +109,7 @@ fi if $cygwin ; then APP_HOME=`cygpath --path --mixed "$APP_HOME"` CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` # We build the pattern for arguments to be converted via cygpath ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` |