Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Duplicate windows x86 installer to have one without architecture suffix #6885

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ci/buildserver-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,10 @@ function build_ref {

case "$(uname -s)" in
MINGW*|MSYS_NT*)
echo "Copying _x64.exe file to .exe for backwards and forwards compatibility"
find $artifact_dir -type f -name 'MullvadVPN*_x64.exe' \
-exec bash -c 'cp "$0" "${0%_x64.exe}.exe"' {} \;

echo "Building ARM64 installers"
target=aarch64-pc-windows-msvc artifact_dir=$artifact_dir build "${build_args[@]}" || return 1

Expand Down
Loading