diff --git a/Installation/file-copy-js.sh b/Installation/file-copy-js.sh index b29a6cdf5a..3751e4ac8f 100755 --- a/Installation/file-copy-js.sh +++ b/Installation/file-copy-js.sh @@ -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