We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 003e226 commit 7fd5746Copy full SHA for 7fd5746
.github/workflows/build-graalvm.yml
@@ -106,9 +106,9 @@ jobs:
106
run: |
107
cd vm
108
if [ -n "${{ inputs.env }}" ]; then
109
- MX_ARGS="\"--java-home=${JAVA_HOME}\" \"--env=${{ inputs.env }}\""
+ MX_ARGS="--java-home \"${JAVA_HOME}\" --env \"${{ inputs.env }}\""
110
else
111
- MX_ARGS="\"--java-home=${JAVA_HOME}\" \"--dy=${{ inputs.dynamic-imports }}\" \"--native-images=${{ inputs.native-images }}\" \"--components=${{ inputs.components }}\""
+ MX_ARGS="--java-home \"${JAVA_HOME}\" --dy \"${{ inputs.dynamic-imports }}\" --native-images \"${{ inputs.native-images }}\" --components \"${{ inputs.components }}\""
112
fi
113
${MX_PATH}/mx $MX_ARGS build
114
ln -s $(${MX_PATH}/mx $MX_ARGS graalvm-home) ${GRAALVM_HOME}
0 commit comments