aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sh/shrc4
1 files changed, 3 insertions, 1 deletions
diff --git a/sh/shrc b/sh/shrc
index 808e944d..fa44892b 100644
--- a/sh/shrc
+++ b/sh/shrc
@@ -8,7 +8,9 @@ command -p stty -ixon -ctlecho 2>/dev/null
HISTSIZE=$((1 << 12))
# If HOSTNAME isn't set by this shell, we'll do it
-[ -n "$HOSTNAME" ] || HOSTNAME=$(uname -n)
+if [ -z "$HOSTNAME" ] ; then
+ HOSTNAME=$(uname -n)
+fi
# Don't warn me about new mail
unset -v MAILCHECK