mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Fix a bad use of test
This commit is contained in:
parent
abf3ee6563
commit
4cb70e8e2a
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ fi
|
|||
echo "Cleaning up '$TMPLOC'"
|
||||
rm -Rf "$TMPLOC"
|
||||
|
||||
if test $RESULT == 0; then
|
||||
if test "$RESULT" = 0; then
|
||||
# Tell the user what we did
|
||||
echo "Output man pages into '${OUTPUTDIR}'"
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue