fixed: install themes with proper access mode

This commit is contained in:
seamus-45 2020-10-07 16:01:07 +05:00
parent 7b82f4f7b2
commit b969086eab

View file

@ -19,17 +19,17 @@ do
if [ x$answer = x"y" ] if [ x$answer = x"y" ]
then then
echo "+Installing '${themefile}'" echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}" install -m 0644 "${themefile}" "${DIRECTORY}"
elif [ x${answer} = x"a" ] elif [ x${answer} = x"a" ]
then then
ia=1 ia=1
echo "+Installing '${themefile}'" echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}" install -m 0644 "${themefile}" "${DIRECTORY}"
else else
echo "+Skipping ${themefile}" echo "+Skipping ${themefile}"
fi fi
else else
echo "+Installing '${themefile}'" echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}" install -m 0644 "${themefile}" "${DIRECTORY}"
fi fi
done done