fixed: check already installed themes in proper destination instead of current directory

This commit is contained in:
seamus-45 2020-10-07 15:38:28 +05:00
parent e17b591590
commit 7b82f4f7b2

View file

@ -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