Use simple copy to copy the dependencies.

This commit is contained in:
SamTV12345 2023-08-08 16:04:01 +02:00
parent 4b8beba7da
commit a8281e48e0
No known key found for this signature in database
GPG key ID: E63EEC7466038043

View file

@ -33,7 +33,8 @@ try export GIT_WORK_TREE=${TMP_FOLDER}; git checkout HEAD -f \
|| fatal "failed to copy etherpad to temporary folder"
try mkdir "${TMP_FOLDER}"/.git
try git rev-parse HEAD >${TMP_FOLDER}/.git/HEAD
try rsync -a ./src/node_modules "${TMP_FOLDER}"/src/
try cp -r ./src/node_modules "${TMP_FOLDER}"/src/node_modules
try cp -r node_modules "${TMP_FOLDER}"/node_modules
try cd "${TMP_FOLDER}"
[ -f src/package.json ] || fatal "failed to copy etherpad to temporary folder"