From c037b3e488c084b32360c01c2015c0eac26a4373 Mon Sep 17 00:00:00 2001 From: angrybayblade Date: Wed, 5 Jun 2024 12:29:34 +0530 Subject: [PATCH] fix: __dirname typo --- electron/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/electron/install.js b/electron/install.js index 94f22f0ea..79f2a1bcc 100644 --- a/electron/install.js +++ b/electron/install.js @@ -114,7 +114,7 @@ function isBrewInstalled() { function installBrew() { runCmdUnix('bash', [ - `${__dir}/scripts/install_brew.sh` + `${__dirname}/scripts/install_brew.sh` ]); }