Skip to content

Commit a24d15e

Browse files
committed
Double-quote shell variables
1 parent 4e1001e commit a24d15e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ runs:
6363
if [ ! -z "$URI" ]; then
6464
$JAVA \
6565
-Dinstall-as-version="$INSTALL_AS_VERSION" \
66-
$DOWNLOAD \
67-
$URI
66+
"$DOWNLOAD" \
67+
"$URI"
6868
else
6969
$JAVA \
7070
-Dinstall-as-version="$INSTALL_AS_VERSION" \
71-
$DOWNLOAD \
72-
$WEBSITE \
73-
$RELEASE \
74-
$VERSION
71+
"$DOWNLOAD" \
72+
"$WEBSITE" \
73+
"$RELEASE" \
74+
"$VERSION"
7575
fi
7676
- name: 'Install Java Development Kit'
7777
if: ${{ inputs.install == 'true' }}

0 commit comments

Comments
 (0)