From 7b82f4f7b210e1098f49bb722c3a15c6afc77c31 Mon Sep 17 00:00:00 2001 From: seamus-45 Date: Wed, 7 Oct 2020 15:38:28 +0500 Subject: [PATCH] fixed: check already installed themes in proper destination instead of current directory --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 3ae4e62..0c97166 100755 --- a/install.sh +++ b/install.sh @@ -12,7 +12,7 @@ fi declare -i ia=0 for themefile in **/*.rasi do - if [ -f "${themefile}" ] && [ ${ia} -eq 0 ] + if [ -f "${DIRECTORY}${themefile#*/}" ] && [ ${ia} -eq 0 ] then echo "Theme '${themefile}' exists, overwrite? y/N/a(ll)" read answer