Using correct comparator
All checks were successful
continuous-integration/drone Build is passing

This commit is contained in:
david 2024-05-15 07:00:56 +02:00
parent 51337c59d0
commit b140323b61

2
warp4j
View File

@ -684,7 +684,7 @@ function create_optimized_runtime() {
local jmods=$JAVA_DOWNLOAD_PATH/$platform/$machine/$CONCRETE_JAVA_VERSION/$UNPACKED_SUBDIR/jmods local jmods=$JAVA_DOWNLOAD_PATH/$platform/$machine/$CONCRETE_JAVA_VERSION/$UNPACKED_SUBDIR/jmods
local strip-debug=strip-debug local strip-debug=strip-debug
echo "Creating minimal runtime for $platform..." echo "Creating minimal runtime for $platform..."
if [[ $JAVA_VERSION_BASE >= 13 ]]; then if [[ $JAVA_VERSION_BASE -ge 13 ]]; then
$strip-debug=strip-java-debug-attributes $strip-debug=strip-java-debug-attributes
fi fi
echo "$JLINK --no-header-files --no-man-pages --$strip-debug --module-path '$jmods' --add-modules $MODULES --output '$BUNDLES_PATH/$platform/$BUNDLED_DISTRO_SUBDIR'" echo "$JLINK --no-header-files --no-man-pages --$strip-debug --module-path '$jmods' --add-modules $MODULES --output '$BUNDLES_PATH/$platform/$BUNDLED_DISTRO_SUBDIR'"