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" ]
then
echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}"
install -m 0644 "${themefile}" "${DIRECTORY}"
elif [ x${answer} = x"a" ]
then
ia=1
echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}"
install -m 0644 "${themefile}" "${DIRECTORY}"
else
echo "+Skipping ${themefile}"
fi
else
echo "+Installing '${themefile}'"
install "${themefile}" "${DIRECTORY}"
install -m 0644 "${themefile}" "${DIRECTORY}"
fi
done