diff options
author | Helmut Grohne <helmut@subdivi.de> | 2023-06-20 08:05:26 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2023-06-20 08:05:26 +0200 |
commit | 652b43980ed5a24dbc9cc9714e419c330d7963ec (patch) | |
tree | 8a8ec3bbe29277ca6fb32f85a8e7bc2e0ca51cd8 | |
parent | 81f9e7abf9329da14f664c12625864bff2e85f25 (diff) | |
download | debvm-652b43980ed5a24dbc9cc9714e419c330d7963ec.tar.gz |
debvm-run: fix local emulation of set -ex
Should be using stderr.
Fixes: 7d0b160531d6 ("debvm-run: replace shell process with qemu process")
-rwxr-xr-x | bin/debvm-run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/debvm-run b/bin/debvm-run index 406da39..ddd6d1f 100755 --- a/bin/debvm-run +++ b/bin/debvm-run @@ -403,5 +403,5 @@ set -- \ -device "$NIC_DEV" \ "$@" -echo + "$QEMU" "$@" +echo "+ $QEMU $*" 1>&2 exec "$QEMU" "$@" |