From 234d59ef80d3fd0b93203f0cdde5c222d713472c Mon Sep 17 00:00:00 2001 From: Bryan Roessler Date: Fri, 22 Oct 2021 18:09:24 -0400 Subject: [PATCH] Fix installer --- script-install-manual-scripts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script-install-manual-scripts b/script-install-manual-scripts index 2551fbcb..64d8e9a0 100755 --- a/script-install-manual-scripts +++ b/script-install-manual-scripts @@ -13,9 +13,9 @@ source="/home/bryan/shared/hartmanlab" [[ "$PWD" != "$source" ]] && pushd "$source" || exit $? -install -m 644 functions /usr/local/bin/ +install -m 644 ./functions /usr/local/bin/ -for script in ./script-*; do +for script in script-*; do cp -u "$script" /usr/local/bin/ done