diff options
author | SizableShrimp <sizableshrimp@sizableshrimp.me> | 2023-07-18 01:01:00 -0500 |
---|---|---|
committer | SizableShrimp <sizableshrimp@sizableshrimp.me> | 2023-07-18 01:01:00 -0500 |
commit | 1d671ed9f1aad8cc68f18afda47febdddd60f0d8 (patch) | |
tree | 01d50cccc1263dee97062a96272129973a913cd0 /gradlew | |
parent | 4d6cf31fbad5d043de2ac248538015a14875e00f (diff) | |
download | Artifactural-1d671ed9f1aad8cc68f18afda47febdddd60f0d8.tar.gz Artifactural-1d671ed9f1aad8cc68f18afda47febdddd60f0d8.tar.bz2 Artifactural-1d671ed9f1aad8cc68f18afda47febdddd60f0d8.zip |
Update to NeoForged and support Gradle 8.2+
Diffstat (limited to 'gradlew')
-rwxr-xr-x | gradlew | 16 |
1 files changed, 10 insertions, 6 deletions
@@ -85,9 +85,6 @@ done APP_BASE_NAME=${0##*/} APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' - # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,10 +130,13 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. @@ -144,7 +144,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac @@ -152,7 +152,7 @@ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then '' | soft) :;; #( *) # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. - # shellcheck disable=SC3045 + # shellcheck disable=SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -197,6 +197,10 @@ if "$cygwin" || "$msys" ; then done fi + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + # Collect all arguments for the java command; # * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of # shell script including quotes and variable substitutions, so put them in |