diff --git a/util/buildscripts/scripts/make_package_win32.sh b/util/buildscripts/scripts/make_package_win32.sh index be079b1f9..c5ee3c6f6 100755 --- a/util/buildscripts/scripts/make_package_win32.sh +++ b/util/buildscripts/scripts/make_package_win32.sh @@ -166,6 +166,10 @@ popd # extract the msi files +# WSL needs the path to exist to convert it in native_path +mkdir -p "${REPO_ROOT}"/dist/msi32 +mkdir -p "${REPO_ROOT}"/dist/msi64 + msiexec.exe -a $(native_path "${REPO_ROOT}"/dist/Installer32.msi) -qn TARGETDIR=$(native_path "${REPO_ROOT}"/dist/msi32) msiexec.exe -a $(native_path "${REPO_ROOT}"/dist/Installer64.msi) -qn TARGETDIR=$(native_path "${REPO_ROOT}"/dist/msi64)