From 345f4e678eefc7aba92da7c0f90d5500e3ca6631 Mon Sep 17 00:00:00 2001 From: Archie Hilton Date: Sat, 1 Oct 2022 19:08:35 +0100 Subject: [PATCH] fix: Add -T flag to module install copy Addresses #34. Altered global modules will now update instead of being copied to a sub-directory. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c409bd2..eb26b1d 100755 --- a/install.sh +++ b/install.sh @@ -33,7 +33,7 @@ fi mkdir --parents "/usr/share/dwmbar/" echo "./modules --> /usr/share/dwmbar/modules" -cp -r "./modules" "/usr/share/dwmbar/modules" +cp -rT "./modules" "/usr/share/dwmbar/modules" echo "./bar.sh --> /usr/share/dwmbar/bar.sh" cp "./bar.sh" "/usr/share/dwmbar/bar.sh"