diff options
| -rwxr-xr-x | .local/bin/putdotfiles | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/putdotfiles b/.local/bin/putdotfiles index 195770c..5c736ff 100755 --- a/.local/bin/putdotfiles +++ b/.local/bin/putdotfiles @@ -2,10 +2,10 @@ if [ -d "$HOME/.local/src/dotfiles/.git" ]; then cp -rfT \ "$HOME/.local/src/dotfiles" \ - "/home/$USER" + "$HOME" else putgitrepo \ https://github.com/ivi-vink/dotfiles.git \ - /home/$USER + "$HOME" fi -rm -rf "/home/$USER/.git" +rm -rf "$HOME/.git" |
