Skip to content

Commit 5802572

Browse files
committed
fix(electron): wrong app path (#8260)
1 parent 3d80725 commit 5802572

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/frontend/apps/electron/scripts/generate-assets.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@ import { glob } from 'glob';
99
const require = createRequire(import.meta.url);
1010
const __dirname = fileURLToPath(new URL('.', import.meta.url));
1111

12-
const repoRootDir = path.join(__dirname, '..', '..', '..', '..');
12+
const repoRootDir = path.join(__dirname, '..', '..', '..', '..', '..');
1313
const electronRootDir = path.join(__dirname, '..');
1414
const publicDistDir = path.join(electronRootDir, 'resources');
1515
const webDir = path.join(
1616
repoRootDir,
1717
'packages',
1818
'frontend',
19+
'apps',
1920
'electron',
2021
'renderer'
2122
);

0 commit comments

Comments
 (0)