diff options
author | Jonas Herzig <me@johni0702.de> | 2019-06-17 11:10:55 +0200 |
---|---|---|
committer | Jonas Herzig <me@johni0702.de> | 2019-06-17 11:10:55 +0200 |
commit | b6acd65e44395ecefb9bf5b0e9069eddb17356fe (patch) | |
tree | da56e4157ed790126778ecdfb013432f192ec169 /gradlew | |
parent | 5db2235f83ae0087c0f0a8ba0e6c3792d68e6bea (diff) | |
download | Remap-b6acd65e44395ecefb9bf5b0e9069eddb17356fe.tar.gz Remap-b6acd65e44395ecefb9bf5b0e9069eddb17356fe.tar.bz2 Remap-b6acd65e44395ecefb9bf5b0e9069eddb17356fe.zip |
Upgrade to Gradle 5
Diffstat (limited to 'gradlew')
-rwxr-xr-x | gradlew | 24 |
1 files changed, 20 insertions, 4 deletions
@@ -1,5 +1,21 @@ #!/usr/bin/env sh +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + ############################################################################## ## ## Gradle start up script for UN*X @@ -28,16 +44,16 @@ APP_NAME="Gradle" APP_BASE_NAME=`basename "$0"` # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS="" +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD="maximum" -warn ( ) { +warn () { echo "$*" } -die ( ) { +die () { echo echo "$*" echo @@ -155,7 +171,7 @@ if $cygwin ; then fi # Escape application args -save ( ) { +save () { for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done echo " " } |