Skip to content

Commit

Permalink
Merge branch 'hotfix/0.11.4'
Browse files Browse the repository at this point in the history
* hotfix/0.11.4:
  (GH-96) This file is not required
  (GH-94) Correcting parameters passed to bootstrappers
  • Loading branch information
gep13 committed Jul 10, 2018
2 parents aebbd5e + 43e8cf5 commit efc87a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
30 changes: 0 additions & 30 deletions .vscode/tasks.json

This file was deleted.

4 changes: 2 additions & 2 deletions src/codeLens/cakeRunTaskCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ export async function installCakeRunTaskCommand(
) {
const buildCommand =
os.platform() === 'win32'
? `powershell -ExecutionPolicy ByPass -File build.ps1 -script \"${fileName}\" -target \"${taskName}\" -verbosity=${runConfig.verbosity}`
: `./build.sh --script \"${fileName}\" --target=\"${taskName}\" --verbosity=${runConfig.verbosity}`;
? `powershell -ExecutionPolicy ByPass -File build.ps1 -script \"${fileName}\" -target \"${taskName}\" -verbosity ${runConfig.verbosity}`
: `./build.sh --script=\"${fileName}\" --target=\"${taskName}\" --verbosity=${runConfig.verbosity}`;

TerminalExecutor.runInTerminal(buildCommand);
}

0 comments on commit efc87a2

Please sign in to comment.