summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsetup4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup b/setup
index 57b3ded72..db9ede6ba 100755
--- a/setup
+++ b/setup
@@ -21,10 +21,10 @@ if [ -z "$ZSH_NAME" ] && [ "$(basename -- "$0")" = "setup" ]; then
fi
# Check if 'column' command is present
-COLUMN=`which column`
+COLUMN=$(which column || true)
if [ -z "$COLUMN" ]; then
# If it is not, use 'cat'
- COLUMN=`which cat`
+ COLUMN=$(which cat)
fi
machine() {