Skip to content

Commit

Permalink
remove unneeded dash (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
jperedadnr authored Sep 4, 2024
1 parent e373ec8 commit 3a9b11a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9496,7 +9496,7 @@ function getGraalVM(graalvm, jdk, arch) {
let java = ``;
let m1 = ``;
if (jdk == 'java23') {
java = `-${jdk}`;
java = `${jdk}`;
m1 = `-amd64`;
if (arch == 'aarch64') {
m1 = `-aarch64`;
Expand Down
2 changes: 1 addition & 1 deletion src/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export async function getGraalVM(
let java = ``
let m1 = ``
if (jdk == 'java23') {
java = `-${jdk}`
java = `${jdk}`
m1 = `-amd64`
if (arch == 'aarch64') {
m1 = `-aarch64`
Expand Down

0 comments on commit 3a9b11a

Please sign in to comment.