Skip to content

Commit

Permalink
fix added for gradle projrct with space for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
SuparnaSuresh committed Nov 28, 2024
1 parent 312b178 commit 44b48eb
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 44b48eb

Please sign in to comment.