From d66b3abcead348e535924258a1472e0616ee2627 Mon Sep 17 00:00:00 2001 From: "Bradley M. Kuhn" Date: Tue, 9 Dec 2025 12:59:40 -0800 Subject: [PATCH] Only create .config dir if it doesn't exit. --- install-all.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install-all.sh b/install-all.sh index 3271d45..51a2850 100755 --- a/install-all.sh +++ b/install-all.sh @@ -9,5 +9,7 @@ fi # Conkeror is a deprecated program #/bin/ln -sf `pwd`/conkerorrc $HOME/.conkerorrc /bin/ln -sf `pwd`/less/lesskey $HOME/.lesskey -mkdir $HOME/.config +if [ ! -d $HOME/.config ]; then + mkdir $HOME/.config +fi /bin/ln -sf `pwd`/xfce/autostart $HOME/.config/autostart