Skip to content

Commit 714b7b8

Browse files
authored
fix(electron): fix electron script path (#8278)
1 parent 315c20f commit 714b7b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/frontend/apps/electron/scripts/make-env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const ReleaseTypeSchema = z.enum(['stable', 'beta', 'canary', 'internal']);
77

88
const __dirname = fileURLToPath(new URL('.', import.meta.url));
99

10-
const REPO_ROOT = path.resolve(__dirname, '..', '..', '..', '..');
10+
const REPO_ROOT = path.resolve(__dirname, '..', '..', '..', '..', '..');
1111
const ROOT = path.resolve(__dirname, '..');
1212

1313
const envBuildType = (process.env.BUILD_TYPE || 'canary').trim().toLowerCase();

0 commit comments

Comments
 (0)