We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 783f75b commit 2b9f082Copy full SHA for 2b9f082
src/config.js
@@ -31,15 +31,14 @@ function createConfig(isDev = false, buildConfig = {}) {
31
32
// Add OS information
33
params.append('os', process.platform);
34
-
35
- // Add architecture information (ensure it's not undefined)
36
- const arch = process.arch || 'unknown';
37
- params.append('arch', arch);
38
39
// Add packaging method from build configuration (Windows only)
40
if (process.platform === 'win32' && this.build && this.build.packagingMethod) {
41
params.append('method', this.build.packagingMethod);
42
}
+
+ // Add architecture information (ensure it's not undefined)
+ const arch = process.arch || 'unknown';
+ params.append('arch', arch);
43
44
return `${baseUrl}?${params.toString()}`;
45
0 commit comments