Skip to content

Commit

Permalink
Merge pull request #401 from SuparnaSuresh/issue399-FixForGradleWrapp…
Browse files Browse the repository at this point in the history
…erwithSpace

Fix for gradle wrapper command - Project path with space
  • Loading branch information
TrevCraw authored Nov 28, 2024
2 parents 312b178 + 44b48eb commit c7b0f3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/commandUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export async function getCommandForGradle(buildGradlePath: string, command: stri
return getGradleCommandForWin(gradleCmdStart, buildGradlePath, command, terminalType, customCommand);
} else {
gradleCmdStart = Path.join(gradleCmdStart, "gradlew");
return formDefaultCommand(gradleCmdStart, buildGradlePath, command, "-b=", customCommand);
return formDefaultCommandWithPath(gradleCmdStart, buildGradlePath, command, "-b=", customCommand);
}
}

Expand Down

0 comments on commit c7b0f3f

Please sign in to comment.