From d39811d31efa40230a87a0625486dcaa1cb1e3ba Mon Sep 17 00:00:00 2001 From: Sergii Bondarenko Date: Sun, 8 Jul 2018 11:44:01 +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 4b3e1a6e..aac32ebf 100755 --- a/install.sh +++ b/install.sh @@ -28,7 +28,7 @@ if [ ! -d "$INSTALL_PATH" ]; then sudo \mkdir -p "$INSTALL_PATH" fi -if sudo \git clone https://github.com/BR0kEN-/cikit.git --recursive --version="$VERSION" "$INSTALL_PATH"; then +if sudo \git clone https://github.com/BR0kEN-/cikit.git --recursive --branch="$VERSION" "$INSTALL_PATH"; then sudo \ln -s "$INSTALL_PATH/lib/cikit" /usr/local/bin/cikit sudo \chown -R "$(\whoami)" "$INSTALL_PATH" fi