1
0
Fork 0

by CoDEmanX: fix file permissions before installing

This commit is contained in:
Willi Goesgens 2015-08-19 13:02:13 +02:00
parent 63f9782fc3
commit f51f8dde0b
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ ${SRCDIR}/Installation/file-list-js.sh ${SRCDIR} | while read a; do
TO="${DSTDIR}/$a"
DIR=`dirname "${TO}"`
chmod a+r "${FROM}"
test -d "${DIR}" || mkdir -p "${DIR}"
cp -n "${FROM}" "${TO}"
done