Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Commit aeb5213

Browse files
committed
Auto
1 parent f684349 commit aeb5213

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

track.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,18 +61,18 @@ case $1 in
6161
"enable")
6262
if [[ -d ./config ]]; then
6363
[[ -d ~/.config ]] || try "mkdir -p ~/.config"
64-
try "cp -rf ./config/* ~/.config"
65-
try "cp -rf ./config/.* ~/.config"
64+
try "cp -r ./config/* ~/.config"
65+
try "cp -r ./config/.* ~/.config"
6666
fi
6767
if [[ -d ./home ]]; then
6868
[[ -d "~" ]] || try "mkdir -p ~"
69-
try "cp -rf ./home/* ~"
70-
try "cp -rf ./home/.* ~"
69+
try "cp -r ./home/* ~"
70+
try "cp -r ./home/.* ~"
7171
fi
7272
if [[ -d ./etc ]]; then
7373
[[ -d /etc ]] || try "mkdir -p /etc"
74-
try "cp -rf ./etc/* /etc"
75-
try "cp -rf ./etc/.* /etc"
74+
try "cp -r ./etc/* /etc"
75+
try "cp -r ./etc/.* /etc"
7676
fi
7777
exit 0
7878
;;

0 commit comments

Comments
 (0)