From afad8092b78852e1395200cf8aa12603261b9613 Mon Sep 17 00:00:00 2001 From: poka Date: Sat, 21 Jan 2023 11:29:29 +0100 Subject: [PATCH] fix setup symlink --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 0c9a850..58fc122 100755 --- a/setup.sh +++ b/setup.sh @@ -12,7 +12,7 @@ done pip3 install -r requirements.txt || hasError=1 chmod u+x jaklis.py -ln -sf $(realpath jaklis.py) /usr/local/bin/jaklis || hasError=1 +sudo ln -sf $(realpath jaklis.py) /usr/local/bin/jaklis || hasError=1 if [[ hasError -eq 0 ]]; then echo "Setup done. You can use 'jaklis' command, try it."