From c5917948ea2b6f1114aaf239567298c3cd20d017 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Tue, 13 Nov 2018 23:13:44 +0100 Subject: [PATCH] Fix symlink script error. --- all_new_2018/symlink_etc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all_new_2018/symlink_etc.sh b/all_new_2018/symlink_etc.sh index f1f97af..9a7a162 100755 --- a/all_new_2018/symlink_etc.sh +++ b/all_new_2018/symlink_etc.sh @@ -6,7 +6,7 @@ set -e target="$1" -if [ ! "${target}" = "all" ] && [ ! "$target}" = "server" ]; then +if [ ! "${target}" = "all" ] && [ ! "${target}" = "server" ]; then echo "Need proper target." false fi -- 2.30.2