From 68d222153b876c2ba3874f10652456259553558d Mon Sep 17 00:00:00 2001 From: Dale Shrauger Date: Fri, 16 Sep 2022 06:47:15 -0500 Subject: [PATCH] Update 'makesymlinks.sh' --- makesymlinks.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makesymlinks.sh b/makesymlinks.sh index 1f3fe18..83bd125 100755 --- a/makesymlinks.sh +++ b/makesymlinks.sh @@ -31,7 +31,7 @@ for file in $files; do done # link Starship config to ~/.config/ if exists -if [ -f ~/.config ]; then +if [ -d ~/.config ]; then ln -s $dir/starship.toml ~/.config/starship.toml fi