Skip to content
This repository was archived by the owner on May 12, 2021. It is now read-only.

Commit e0285b6

Browse files
Change to only build ia32 binaries on Windows
The build failed when Travis tried to build 32-bit Linux binaries, so I'm moving this config to the more-specific JSON object so we can build only for Windows.
1 parent c85aa12 commit e0285b6

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"check-locales": "node scripts/check-locales.js",
1212
"postinstall": "electron-builder install-app-deps",
1313
"release-notes": "node scripts/release-notes.js",
14-
"dist": "electron-builder -c.snap.publish=github --x64 --ia32",
14+
"dist": "electron-builder -c.snap.publish=github",
1515
"version": "mv docs/CHANGELOG.md . && changelog-version && mv CHANGELOG.md docs/ && git add docs/CHANGELOG.md"
1616
},
1717
"author": "Secure Scuttlebutt Consortium",
@@ -127,7 +127,16 @@
127127
"icon": "build/dmg/icon.icns"
128128
},
129129
"win": {
130-
"publisherName": "Secure Scuttlebutt Consortium"
130+
"publisherName": "Secure Scuttlebutt Consortium",
131+
"target": [
132+
{
133+
"target": "nsis",
134+
"arch": [
135+
"x64",
136+
"ia32"
137+
]
138+
}
139+
]
131140
}
132141
}
133142
}

0 commit comments

Comments
 (0)