aboutsummaryrefslogtreecommitdiffstats
path: root/gradlew
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2022-11-23 21:40:49 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2022-12-08 23:32:38 +0100
commit786710a0723feea553cb729961aa2216010e40db (patch)
tree77c1ec43f7c7a04bb47e6763f177208b58401845 /gradlew
parentchore(build): update Github actions (diff)
downloadrefinery-786710a0723feea553cb729961aa2216010e40db.tar.gz
refinery-786710a0723feea553cb729961aa2216010e40db.tar.zst
refinery-786710a0723feea553cb729961aa2216010e40db.zip
chore(deps): bump dependencies
Diffstat (limited to 'gradlew')
-rwxr-xr-xgradlew12
1 files changed, 8 insertions, 4 deletions
diff --git a/gradlew b/gradlew
index a69d9cb6..65dcd68d 100755
--- a/gradlew
+++ b/gradlew
@@ -55,7 +55,7 @@
55# Darwin, MinGW, and NonStop. 55# Darwin, MinGW, and NonStop.
56# 56#
57# (3) This script is generated from the Groovy template 57# (3) This script is generated from the Groovy template
58# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt 58# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
59# within the Gradle project. 59# within the Gradle project.
60# 60#
61# You can find Gradle at https://github.com/gradle/gradle/. 61# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,10 +80,10 @@ do
80 esac 80 esac
81done 81done
82 82
83APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit 83# This is normally unused
84 84# shellcheck disable=SC2034
85APP_NAME="Gradle"
86APP_BASE_NAME=${0##*/} 85APP_BASE_NAME=${0##*/}
86APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
87 87
88# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 88# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 89DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
@@ -143,12 +143,16 @@ fi
143if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then 143if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144 case $MAX_FD in #( 144 case $MAX_FD in #(
145 max*) 145 max*)
146 # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
147 # shellcheck disable=SC3045
146 MAX_FD=$( ulimit -H -n ) || 148 MAX_FD=$( ulimit -H -n ) ||
147 warn "Could not query maximum file descriptor limit" 149 warn "Could not query maximum file descriptor limit"
148 esac 150 esac
149 case $MAX_FD in #( 151 case $MAX_FD in #(
150 '' | soft) :;; #( 152 '' | soft) :;; #(
151 *) 153 *)
154 # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
155 # shellcheck disable=SC3045
152 ulimit -n "$MAX_FD" || 156 ulimit -n "$MAX_FD" ||
153 warn "Could not set maximum file descriptor limit to $MAX_FD" 157 warn "Could not set maximum file descriptor limit to $MAX_FD"
154 esac 158 esac