diff options
author | Dream Master <dream-master@gmx.net> | 2024-07-28 14:17:26 +0700 |
---|---|---|
committer | Dream Master <dream-master@gmx.net> | 2024-07-28 14:17:26 +0700 |
commit | dd74a8a11e161baaba12263ca7a33bdc436d57da (patch) | |
tree | b6deedb3eaf62b6b0afd8d1a3edc2fa55958d707 /gradlew | |
parent | fab71ba2fece1f018b10eac7aa0de1aeb22b2ecf (diff) | |
download | GT5-Unofficial-dd74a8a11e161baaba12263ca7a33bdc436d57da.tar.gz GT5-Unofficial-dd74a8a11e161baaba12263ca7a33bdc436d57da.tar.bz2 GT5-Unofficial-dd74a8a11e161baaba12263ca7a33bdc436d57da.zip |
update
Diffstat (limited to 'gradlew')
-rwxr-xr-x | gradlew | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -15,6 +15,8 @@ # See the License for the specific language governing permissions and # limitations under the License. # +# SPDX-License-Identifier: Apache-2.0 +# ############################################################################## # @@ -84,7 +86,8 @@ done # shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) -APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum |