summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Ollila <tomi.ollila@iki.fi>2016-10-24 08:37:27 +0300
committerTomi Ollila <tomi.ollila@iki.fi>2016-10-24 08:37:27 +0300
commitdc6dadf0ad4e8c86b83d927c6154e62af5c780d5 (patch)
treed6bd537dc8566b1e26666105c77e8592a49e41e7
parent05c4f6de8fb97054de1b687269ab2eeb03438f0c (diff)
for BASH_XTRACEFD=6 to work, the fd has to be open
-rw-r--r--remoteusage/124.mdwn2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoteusage/124.mdwn b/remoteusage/124.mdwn
index fb01678..d1149cc 100644
--- a/remoteusage/124.mdwn
+++ b/remoteusage/124.mdwn
@@ -22,7 +22,7 @@ Write the following code to a file, for example `remote-notmuch.sh`.
set -eu
# To trace execution, uncomment next line:
- #BASH_XTRACEFD=6; exec 6>>remote-errors; echo -- >&6; set -x
+ #exec 6>>remote-errors; BASH_XTRACEFD=6; echo -- >&6; set -x
: ${REMOTE_NOTMUCH_SSHCTRL_SOCK:=master-notmuch@remote:22}
: ${REMOTE_NOTMUCH_COMMAND:=notmuch}