Skip to content

Commit

Permalink
build: Fix the generate-jars script for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rvost committed Dec 31, 2023
1 parent 9fb4fd5 commit 6aad2b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generate-jars.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function isWin() {
}

function mvnw() {
return isWin() ? "mvnw.cmd" : "mvnw";
return isWin() ? "mvnw.cmd" : "./mvnw";
}

cp.execSync(mvnw() + " verify -DskipTests -Pgenerate-vscode-jars", {stdio: [0, 1, 2]});

0 comments on commit 6aad2b2

Please sign in to comment.