1
1

* extfs/ulha.in: Don't suppress stderr.

Этот коммит содержится в:
Pavel Roskin 2002-12-14 04:39:09 +00:00
родитель 5773018d1f
Коммит 6c465b4a6f
2 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -1,5 +1,7 @@
2002-12-13 Pavel Roskin <proski@gnu.org>
* extfs/ulha.in: Don't suppress stderr.
* extfs/uzoo.in: Always use "q" option to avoid processing junk.
Always create symlink, do it in a safer directory.

Просмотреть файл

@ -24,10 +24,6 @@
# ./lha list Mystery.lha
# to examine the output directly on the console. The output string must be
# precisely in the format described in the README in this directory.
# Another helpful thing is to temporarily remove the redirection of error
# output of awk (The '2> /dev/null' instruction near the end of mcfs_list())
# The screen will get ugly if there's an error, but some useful text shows
# at the bottom of the screen.
# Caveat emptor.
# Learn Latin.
@ -129,8 +125,8 @@ mc_lha_fs_run()
# FIXME: Try harder to generate a unique directory if this fails
mkdir -m 0700 $TMPDIR || exit 1
$LHA_GET "$1" "$2" > $TMPCMD
chmod a+x $TMPCMD 2> /dev/null
$TMPCMD 2> /dev/null
chmod a+x $TMPCMD
$TMPCMD
rm -rf $TMPDIR
}