diff options
| author | Miquel Sabaté Solà <msabate@suse.com> | 2020-04-28 15:34:19 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <msabate@suse.com> | 2020-08-03 15:41:16 +0200 |
| commit | 13dd47e9bbb359bc3a55147aa300346fa432592a (patch) | |
| tree | 664090717c84a2f4aaf8c63a1e7b5df28a6d3008 /install.sh | |
| parent | cf7f51a46201a944ac5409322d87577822690677 (diff) | |
| download | dotfiles-13dd47e9bbb359bc3a55147aa300346fa432592a.tar.gz dotfiles-13dd47e9bbb359bc3a55147aa300346fa432592a.zip | |
bin: added find-broken-symlinks
This simple script checks for unexpectedly broken symlinks in a given
directory ($HOME by default). This is useful because, as I've sadly detected, I
had some relevant files that were not actually symlinked and some things utterly
failed.
Signed-off-by: Miquel Sabaté Solà <msabate@suse.com>
Diffstat (limited to 'install.sh')
| -rwxr-xr-x | install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -53,7 +53,7 @@ done # Link the global.gitignore file rm "${HOME:?}/.gitignore" -ln -s "$(readlink -f global.gitignore)" "${HOME:?}/.gitignore" +ln -s "$(readlink -f .global.gitignore)" "${HOME:?}/.gitignore" # Copy entries of some of the directories inside of maybe existing ones. for i in Images .config .gnupg; do |
