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" ]
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue