Skip to content

Commit

Permalink
Merge pull request #23 from illwieckz/soft-hard
Browse files Browse the repository at this point in the history
use an explicit os-arch naming scheme for zip shipping binaries
  • Loading branch information
DolceTriade authored Dec 2, 2018
2 parents 8258293 + e4f8e16 commit ac7b44b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion osx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ QString extractAppPath(const QString& path) {
namespace Sys {
QString archiveName()
{
return "mac.zip";
return "macos-amd64.zip";
}

QString defaultInstallPath()
Expand Down
2 changes: 1 addition & 1 deletion unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Sys {
QString archiveName()
{
return "linux64.zip";
return "linux-amd64.zip";
}

void migrateHomePath()
Expand Down
4 changes: 2 additions & 2 deletions win.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,9 @@ bool IsWow64()
QString archiveName()
{
if (IsWow64()) {
return "win64.zip";
return "windows-amd64.zip";
} else {
return "win32.zip";
return "windows-i686.zip";
}
}

Expand Down

0 comments on commit ac7b44b

Please sign in to comment.