From 61b87dfa3580c11e75322f912bf1a97f4a9299c3 Mon Sep 17 00:00:00 2001 From: truemiller Date: Mon, 16 Sep 2024 14:17:41 +0100 Subject: [PATCH] fix: add dotenv --- electron/hooks/afterSign.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/electron/hooks/afterSign.js b/electron/hooks/afterSign.js index 263664d52..25b453c69 100644 --- a/electron/hooks/afterSign.js +++ b/electron/hooks/afterSign.js @@ -2,6 +2,9 @@ const { execSync } = require('child_process'); const path = require('path'); const fs = require('fs'); const os = require('os'); +const dotenv = require('dotenv'); + +dotenv.config(); module.exports = async function (context) { const appOutDir = context.appOutDir;