fixed: install themes with proper access mode
This commit is contained in:
parent
7b82f4f7b2
commit
b969086eab
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue