Skip to content

Commit 213c696

Browse files
committed
another windows fix
1 parent 6ad809b commit 213c696

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

packages/compass/scripts/verify-package-contents.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ function run() {
7575
execute('npx', [
7676
'@electron/asar',
7777
'extract',
78-
basePath,
79-
path.join(
80-
path.dirname(basePath),
81-
path.basename(basePath) + '.fully-unpacked'
82-
),
78+
basePath.replaceAll(path.sep, path.posix.sep),
79+
path
80+
.join(
81+
path.dirname(basePath),
82+
path.basename(basePath) + '.fully-unpacked'
83+
)
84+
.replaceAll(path.sep, path.posix.sep),
8385
]);
8486
}
8587

0 commit comments

Comments
 (0)