From 4c3248a654dbcc6f02ca7c92250d61db2fe93b80 Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Sat, 10 Feb 2024 17:21:43 +0100 Subject: [PATCH] fixed. --- src/bin/buildForWindows.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/buildForWindows.sh b/src/bin/buildForWindows.sh index a1c8ca2dc..f878ff46a 100755 --- a/src/bin/buildForWindows.sh +++ b/src/bin/buildForWindows.sh @@ -33,6 +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 +# Disable symlinks to avoid problems with Windows +try pnpm config set symlink false try pnpm i "${TMP_FOLDER}"/src/node_modules try cd "${TMP_FOLDER}"