diff options
author | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 22:52:40 -0500 |
---|---|---|
committer | Jacob Janzen <jjanzenn@proton.me> | 2024-08-09 22:52:40 -0500 |
commit | 481e93fd52163dfb0caa68b8312bae817a434416 (patch) | |
tree | 442361c35eee5b3e4581ce709321ea85c6d7c525 /install | |
parent | e6e8ebe10aa40e5a3be2b94cdf3b324f3d3e52e0 (diff) |
fix install script
Diffstat (limited to 'install')
-rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ #!/bin/sh echo 'backing up previous log file to ~/.update-home-old.log' -mv ~/.update-home.log ~/.update-home-old.log &>> /dev/null +mv ~/.update-home.log ~/.update-home-old.log >> /dev/null 2>&1 if ! test -d ~/.dotfiles; then echo '.dotfiles should be at ~/.dotfiles; reinstalling dotfiles at ~/.dotfiles...' |