mirror of https://github.com/databricks/cli.git
general stderr
This commit is contained in:
parent
90a95846ad
commit
8c094db503
|
@ -12,5 +12,5 @@ Error: running "bash -c exit 5" failed with exit code: 5
|
||||||
|
|
||||||
Exit code: 1
|
Exit code: 1
|
||||||
|
|
||||||
>>> [CLI] bundle exec -- bash -c echo hello > /dev/stderr
|
>>> [CLI] bundle exec -- python3 -c import sys; print('Hello', file=sys.stderr)
|
||||||
hello
|
Hello
|
||||||
|
|
|
@ -8,4 +8,4 @@ errcode trace $CLI bundle exec -- --help
|
||||||
errcode trace $CLI bundle exec -- bash -c "exit 5"
|
errcode trace $CLI bundle exec -- bash -c "exit 5"
|
||||||
|
|
||||||
# stderr should also be passed through.
|
# stderr should also be passed through.
|
||||||
trace $CLI bundle exec -- bash -c "echo hello > /dev/stderr"
|
trace $CLI bundle exec -- python3 -c "import sys; print('Hello', file=sys.stderr)"
|
||||||
|
|
Loading…
Reference in New Issue