aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArchie Hilton <archie.hilton1@gmail.com>2022-10-01 19:08:35 +0100
committerArchie Hilton <archie.hilton1@gmail.com>2022-10-01 19:08:35 +0100
commit345f4e678eefc7aba92da7c0f90d5500e3ca6631 (patch)
treefebed0edd9968426db72722d879f1dab7bc7fd92
parent574f5703c558a56bc9c354471543511255423dc7 (diff)
fix: Add -T flag to module install copy
Addresses #34. Altered global modules will now update instead of being copied to a sub-directory.
-rwxr-xr-xinstall.sh2
1 files changed, 1 insertions, 1 deletions
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"