From 13dd47e9bbb359bc3a55147aa300346fa432592a Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 28 Apr 2020 15:34:19 +0200 Subject: bin: added find-broken-symlinks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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à --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index 1d354c8..dc389c4 100755 --- a/install.sh +++ b/install.sh @@ -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 -- cgit v1.2.3