diff options
author | tv <tv@iiso> | 2011-09-20 15:45:30 +0200 |
---|---|---|
committer | tv <tv@iiso> | 2011-09-20 15:45:30 +0200 |
commit | fcbb481cbd888d6ab66b09e649c754a012198e53 (patch) | |
tree | 4a170454bbd7fc0b587d15de28dbd03e41e6a4ba /hyper | |
parent | 8e30185619d6cdc8ec2cd5dd0f341ffabef2d563 (diff) |
//hyper spawn: set +x before rediring popes
Diffstat (limited to 'hyper')
-rwxr-xr-x | hyper/process/spawn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hyper/process/spawn b/hyper/process/spawn index cf93eb6b..65e94d86 100755 --- a/hyper/process/spawn +++ b/hyper/process/spawn @@ -42,6 +42,7 @@ spawn() { # spawn child process ( : "in [32;1m$PWD/[m spawn [32m${*:-[35;1mnothing}[m" + set +x # disable debug output so we don't clobber 2 exec 0>&- 1>&- 2>&- 0<>0 1<>1 2<>2 cd "$cwd" exec "$@") & |