-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Add BashCommand #168
Add BashCommand #168
Conversation
When I run the following command BashCommand(
script: () => '''
echo hello
echo "bye" >&2
exit 1
''',
description: 'test bash error',
name: 'test-bash',
); I get the following output
I would have expected that Also |
The error is empty because the |
Further improved the error message. Instead of directly writing it to Before:
After:
|
A new command that allows writing a sidekick command as bash script
Usage:
Prints