Skip to content

Commit d2b482b

Browse files
committed
fix(electron): incorrect path to root dir (#8220)
1 parent 23c7f8b commit d2b482b

File tree

1 file changed

+1
-1
lines changed
  • packages/frontend/apps/electron/scripts

1 file changed

+1
-1
lines changed

packages/frontend/apps/electron/scripts/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { BuildOptions, Plugin } from 'esbuild';
88

99
export const electronDir = fileURLToPath(new URL('..', import.meta.url));
1010

11-
export const rootDir = resolve(electronDir, '..', '..', '..');
11+
export const rootDir = resolve(electronDir, '..', '..', '..', '..');
1212

1313
export const NODE_MAJOR_VERSION = 18;
1414

0 commit comments

Comments
 (0)