Skip to content

Commit ac7b44b

Browse files
authored
Merge pull request #23 from illwieckz/soft-hard
use an explicit os-arch naming scheme for zip shipping binaries
2 parents 8258293 + e4f8e16 commit ac7b44b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

osx.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ QString extractAppPath(const QString& path) {
3333
namespace Sys {
3434
QString archiveName()
3535
{
36-
return "mac.zip";
36+
return "macos-amd64.zip";
3737
}
3838

3939
QString defaultInstallPath()

unix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace Sys {
1212
QString archiveName()
1313
{
14-
return "linux64.zip";
14+
return "linux-amd64.zip";
1515
}
1616

1717
void migrateHomePath()

win.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ bool IsWow64()
110110
QString archiveName()
111111
{
112112
if (IsWow64()) {
113-
return "win64.zip";
113+
return "windows-amd64.zip";
114114
} else {
115-
return "win32.zip";
115+
return "windows-i686.zip";
116116
}
117117
}
118118

0 commit comments

Comments
 (0)