From a797617a957f6e00f6360a91953b890d042853d2 Mon Sep 17 00:00:00 2001 From: RyanGreenup <47832594+RyanGreenup@users.noreply.github.com> Date: Fri, 5 Mar 2021 18:43:45 +1100 Subject: [PATCH] fix install script missing quotation mark --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5b5ba72..83304f0 100755 --- a/install.sh +++ b/install.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash INSTALL_DIR="$HOME/.cadmus" BIN_DIR="$HOME/.local/bin/" -mkdir "${BIN_DIR} > /dev/null +mkdir "${BIN_DIR}" > /dev/null main () { me=`basename "$0"`