From 6de4a52bedfdf81e90186d9c4e100b56815ddad5 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Tue, 16 Apr 2013 00:08:31 +0200 Subject: [PATCH] setup.sh: Only link ssh_config if ~/.ssh is owned by user. --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index 7bf7882..b1b14de 100755 --- a/setup.sh +++ b/setup.sh @@ -266,6 +266,6 @@ if installed htop; then mkdir -p ~/.config/htop link htoprc ~/.config/htop/htoprc fi -if test -d ~/.ssh; then +if test -d ~/.ssh && test -O ~/.ssh; then link ssh_config ~/.ssh/config fi -- 2.44.1