Skip to content

Commit

Permalink
Merge pull request #420 from badsyntax/git-bash-windows
Browse files Browse the repository at this point in the history
Fix starting server on git bash windows
  • Loading branch information
badsyntax authored May 21, 2020
2 parents e24c5d1 + aa85afd commit e7b8236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ export function buildGradleServerTask(
cwd: string,
args: string[] = []
): vscode.Task {
const cmd = getGradleTasksServerCommand();
const cmd = `"${getGradleTasksServerCommand()}"`;
logger.debug(`Gradle Tasks Server dir: ${cwd}`);
logger.debug(`Gradle Tasks Server cmd: ${cmd} ${args.join(' ')}`);
const taskType = 'gradle';
Expand Down

0 comments on commit e7b8236

Please sign in to comment.