From a96c16aaf4c774519c36b16c5358358ba741117f Mon Sep 17 00:00:00 2001 From: cardoso Date: Tue, 28 May 2024 16:13:03 -0400 Subject: [PATCH] Update install.sh Correction for creating a link in Linux-based distributions --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 7f1c0b3..08c9faf 100755 --- a/install.sh +++ b/install.sh @@ -19,8 +19,8 @@ function install_macos(){ } function install_others(){ - mv main /usr/bin/goanime - ln -sf /usr/bin/goanime /usr/bin/go-anime + mv main /usr/local/bin/goanime + ln -f /usr/local/bin/goanime /usr/local/bin/go-anime } @@ -37,4 +37,4 @@ if [ "$EUID" -eq 0 ]; then start else echo "Este programa deve ser rodado como sudo" -fi \ No newline at end of file +fi