Skip to content

Commit

Permalink
fix: composer tasks use an incorrect command to execute composer scri…
Browse files Browse the repository at this point in the history
…pts. [fixes #166]
  • Loading branch information
spmeesseman committed Jan 23, 2022
1 parent ddb7b81 commit 1052d1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/composer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class ComposerTaskProvider extends TaskExplorerProvider implements TaskEx

const def = this.getDefaultDefinition(target, folder, uri);
const cwd = path.dirname(uri.fsPath);
const args = [target];
const args = ["run-script", target];
const options = { cwd };
const execution = new ShellExecution(getCommand(folder, cmd), args, options);

Expand Down

0 comments on commit 1052d1d

Please sign in to comment.