summaryrefslogtreecommitdiff
path: root/copy-all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'copy-all.sh')
-rw-r--r--copy-all.sh11
1 files changed, 7 insertions, 4 deletions
diff --git a/copy-all.sh b/copy-all.sh
index 2c6eaab..489e6ec 100644
--- a/copy-all.sh
+++ b/copy-all.sh
@@ -7,12 +7,15 @@ if [ "$answer" != "y" ]; then
exit 1
fi
-cp -rf ./config/* ~/.config/
-cp -rf ./icons/* ~/.icons/
-cp -rf ./themes/* ~/.themes/
+mkdir -p ~/.config
+mkdir -p ~/.icons
+mkdir -p ~/.themes
+cp -rf ./config/ ~/.config/
+cp -rf ./icons/ ~/.icons/
+cp -rf ./themes/ ~/.themes/
mkdir -p ~/.local/bin/
cp -rf ./bin ~/.local/bin/
-cp -rf ./home/* ~/
+cp -rf ./home/ ~/
cp ./vimrc ~/.vimrc
cp ./nvimrc ~/.nvimrc
cp ./zshrc ~/.zshrc