diff --git a/installAndRun.sh b/installAndRun.sh index 774ce96..1970b42 100755 --- a/installAndRun.sh +++ b/installAndRun.sh @@ -20,7 +20,7 @@ if [[ justInstall -eq 0 ]]; then #ls /opt/gradle/gradle-${gradleVersion} # For debugging installation fi - export PATH=$PATH:/opt/gradle/gradle-${gradleVersion}/bin + export PATH=/opt/gradle/gradle-${gradleVersion}/bin:$PATH gradle wrapper --gradle-version=${gradleVersion} --distribution-type=bin @@ -30,7 +30,7 @@ if [[ justInstall -eq 0 ]]; then gradle clean gradle build else - export PATH=$PATH:/opt/gradle/gradle-${gradleVersion}/bin # Make sure the gradle is still accessible (it usually isn't without the "export"). + export PATH=/opt/gradle/gradle-${gradleVersion}/bin:$PATH # Make sure the gradle is still accessible (it usually isn't without the "export"). fi gradle bootRun