From 134d10f20dbe3f6df82c613434f996e5fe462e50 Mon Sep 17 00:00:00 2001 From: Tait Hoyenm <44244401+TTWNO@users.noreply.github.com> Date: Mon, 15 Jul 2019 16:10:57 +0000 Subject: [PATCH] Update install script to copy instad of link --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 712d842..e3803c8 100755 --- a/install.sh +++ b/install.sh @@ -1,4 +1,6 @@ mkdir --parents ~/.local/bin/ 2> /dev/null || echo "Local bin exists" -ln -s */* ~/.local/bin/ && echo "Linked!" +cp */* ~/.local/bin/ && echo "Copied!" + +echo "Run again to update local copies of script after git pull." echo "Add ~/.local/bin/ to your \$PATH to be able to run these scripts from your terminal"