Add Linux AppImage maker for universal builds

This commit is contained in:
2026-03-28 15:52:40 +01:00
parent cc543076c7
commit 776a53d7be
4 changed files with 75 additions and 6 deletions

View File

@@ -40,6 +40,19 @@ if (buildTarget == "deb" || buildTarget == "all") {
});
}
if (buildTarget == "appimage" || buildTarget == "all") {
makers.push({
name: "@reforged/maker-appimage",
config: {
options: {
bin: packageJson.productName,
name: packageJson.productName,
icon: "./assets/icon.png",
},
},
});
}
async function fileExists(filePath) {
try {
await fs.access(filePath);