From bc073154e7ed53392ff30a3e50438b7efe25d0ff Mon Sep 17 00:00:00 2001 From: wasabi Date: Fri, 9 Aug 2024 23:03:36 -0500 Subject: [PATCH] Changed install.sh to make the commands more unix-like --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 0f35062..bddbbbc 100755 --- a/install.sh +++ b/install.sh @@ -24,9 +24,9 @@ if [ "$EUID" -ne 0 ]; then echo "This script must be run as root to install system-wide" exit 1 fi -cp ./src/transfer.pl /usr/local/bin/transfer.pl -cp ./src/estimate.pl /usr/local/bin/estimate.pl -cp ./src/fixlist.sh /usr/local/bin/fixlist.sh +cp ./src/transfer.pl /usr/local/bin/transfer +cp ./src/estimate.pl /usr/local/bin/estimate +cp ./src/fixlist.sh /usr/local/bin/fixlist chmod 755 /usr/local/bin/transfer.pl chmod 755 /usr/local/bin/estimate.pl chmod 755 /usr/local/bin/fixlist.sh