We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b47d0 commit 3f82201Copy full SHA for 3f82201
contrib/mc-wrapper.csh.in
@@ -6,7 +6,7 @@ else
6
setenv MC_PWD_FILE "`mktemp '/tmp/mc.pwd.XXXXXX'`"
7
endif
8
9
-@bindir@/mc -P "$MC_PWD_FILE" $*
+@bindir@/mc -P "$MC_PWD_FILE" $* || true
10
11
if (-r "$MC_PWD_FILE") then
12
setenv MC_PWD "`cat '$MC_PWD_FILE'`"
contrib/mc-wrapper.sh.in
MC_PWD_FILE="`mktemp "/tmp/mc.pwd.XXXXXX"`"
fi
-@bindir@/mc -P "$MC_PWD_FILE" "$@"
+@bindir@/mc -P "$MC_PWD_FILE" "$@" || true
if test -r "$MC_PWD_FILE"; then
MC_PWD="`cat "$MC_PWD_FILE"`"
0 commit comments