From fe40435719d18d4a7a784eb48c2febbdcef6f9c9 Mon Sep 17 00:00:00 2001 From: Sergii Bondarenko Date: Sun, 8 Jul 2018 11:41:37 +0300 Subject: [PATCH] #147: Fix installation without requirements --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index e2e32876..4b3e1a6e 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,7 @@ INSTALL_PATH="/usr/local/share/cikit" NOCHECK="--no-requirements-check" ARGS="$*" -if [[ "$ARGS" =~ .*$NOCHECK.* ]]; then +if [[ ! "$ARGS" =~ .*$NOCHECK.* ]]; then MISSING="" for COMMAND in vagrant VBoxManage ansible-playbook; do