diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-27 10:30:19 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2024-01-27 10:30:37 -0500 |
| commit | 5962fcf05a2af92d5fc2e0990836a3af0e7fbdd3 (patch) | |
| tree | 5cf1b4bb0a19acc889f7472ff5a8e7f6ad8b9120 /install.sh | |
| parent | 01349d12add3f9568c226acfdca0ec7dd368c061 (diff) | |
| download | dotfiles-5962fcf05a2af92d5fc2e0990836a3af0e7fbdd3.tar.gz dotfiles-5962fcf05a2af92d5fc2e0990836a3af0e7fbdd3.tar.xz | |
Fix minor bugs. Sort Fedora packages. Add btop
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -15,7 +15,9 @@ setLink() { return fi - [ -e "$dest" ] && rm "$dest" + if [ -L "$dest" ] || [ -e "$dest" ] ; then + rm "$dest" + fi ln -s "$src" "$dest" } |
