From ba1cf70160eddaf47666c9f203e65b2cf2a5589f Mon Sep 17 00:00:00 2001 From: ByteDream Date: Thu, 3 Jun 2021 01:13:27 +0200 Subject: [PATCH] Scripts to pathify doesn't needing the .sh ending anymore --- pathify/pathify.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pathify/pathify.sh b/pathify/pathify.sh index e989f93..fe324d9 100755 --- a/pathify/pathify.sh +++ b/pathify/pathify.sh @@ -29,11 +29,11 @@ if [ $# -ge 1 ]; then echo "The script is already installed" fi elif [ ! -z $link ]; then - ln -s "$path/$1.sh" $executablePath + ln -s $path/$1.* $executablePath echo "Pathified $1" else cp -r $path /usr/share - ln -s "/usr/share/$1/$1.sh" $executablePath + ln -s /usr/share/$1/$1.* $executablePath echo "Pathified $1" fi else