fixed: check already installed themes in proper destination instead of current directory
This commit is contained in:
parent
e17b591590
commit
7b82f4f7b2
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ fi
|
||||||
declare -i ia=0
|
declare -i ia=0
|
||||||
for themefile in **/*.rasi
|
for themefile in **/*.rasi
|
||||||
do
|
do
|
||||||
if [ -f "${themefile}" ] && [ ${ia} -eq 0 ]
|
if [ -f "${DIRECTORY}${themefile#*/}" ] && [ ${ia} -eq 0 ]
|
||||||
then
|
then
|
||||||
echo "Theme '${themefile}' exists, overwrite? y/N/a(ll)"
|
echo "Theme '${themefile}' exists, overwrite? y/N/a(ll)"
|
||||||
read answer
|
read answer
|
||||||
|
|
Loading…
Add table
Reference in a new issue