From 7574d0defc88c9b3434a119663aa4e49df528cf0 Mon Sep 17 00:00:00 2001 From: matt Date: Fri, 20 Feb 2026 01:37:43 +0900 Subject: [PATCH] Fix/linux sandbox permissions (#29) * feat(package): add afterInstall script for chrome-sandbox permissions - Updated package.json to include an afterInstall script that adjusts permissions for the chrome-sandbox on Linux. - Added new afterInstall.sh script to ensure proper ownership and permissions for the sandbox file, enhancing security and functionality. * chore(package): add deb configuration section in package.json - Introduced a new "deb" section in package.json to specify post-installation scripts for Debian packages. - Enhanced the package configuration for better support of Linux distributions. --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 4a9093b0..05ce23be 100644 --- a/package.json +++ b/package.json @@ -164,6 +164,9 @@ "category": "Development", "afterInstall": "resources/afterInstall.sh" }, + "deb": { + "afterInstall": "resources/afterInstall.sh" + }, "nsis": { "oneClick": false, "perMachine": false,