Skip to content

Commit 69c1f51

Browse files
update linux build to work without libfuse2
1 parent f080749 commit 69c1f51

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/build.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ jobs:
5959
# List contents before build
6060
ls -la
6161
62-
# Run build with verbose logging
62+
# Run build with verbose logging for Linux format
63+
# AppImage - Universal portable format that doesn't require FUSE
6364
npx electron-builder --linux AppImage --x64
6465
6566
# Show build output directory

package.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,18 @@
108108
"target": "AppImage",
109109
"arch": [
110110
"x64"
111-
]
111+
],
112+
"options": {
113+
"systemIntegration": "doNotAsk",
114+
"runtime": "electron-builder-runtime-no-fuse"
115+
}
112116
}
113117
],
114118
"category": "Development",
119+
"artifactName": "Drivechain-Launcher-${version}.${ext}",
120+
"asarUnpack": [
121+
"node_modules/@grpc"
122+
],
115123
"maintainer": "Drivechain <support@drivechain.info>",
116124
"executableName": "drivechain-launcher",
117125
"executableArgs": [

0 commit comments

Comments
 (0)