背景
electron 应用使用 electron-builder 打包的过程中报错
⨯ Get "https://github.com/electron-userland/electron-builder-binaries/releases/download/fpm-1.9.3-2.3.1-linux-x86_64/fpm-1.9.3-2.3.1-linux-x86_64.7z": read tcp 10.45.48.35:29467->20.205.243.166:443: read: connection timed out
解决
electron-builder 配置增加:
"deb": { "fpm": [ "--architecture=all" ] }
参考
www.electron.build/configurati…
fpm.readthedocs.io/en/latest/c…
github.com/electron-us…