We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
@pgollucci Want to pick this one?
Sorry, something went wrong.
Something like this?
task.cwd('foo'); task.exec('ls'); task.exec('echo bar');
results in
(cd foo ; ls) (cd foo; echo bar)
task.exec('ls', 'foo');
(cd foo ; ls)
exec()
Task
Give #356 That API won't work for exec()
task.exec("ls", { args?: [], cwd?: foo, });
Give #356 That API won't work for exec() task.exec("ls", { args?: [], cwd?: foo, });
Yes that's what I had in mind.
And also support at the Task level so it applies to all commands (unless they override):
p.addTask('foo', { cwd: 'relative/sir' });
08c08d3
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: