Skip to content

Commit 7efa575

Browse files
committed
fix for windows path
1 parent 79bb6b8 commit 7efa575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function extractArchive(artifactsDir: string, destinationPath: string): Kind {
6262

6363
function run() {
6464
const artifactsDir = path.resolve(__dirname, '..', 'dist');
65-
const destinationPath = fs.mkdtempSync('compass-package-');
65+
const destinationPath = path.resolve(fs.mkdtempSync('compass-package-'));
6666
const fixturePath = path.resolve(__dirname, 'fixtures');
6767

6868
try {

0 commit comments

Comments
 (0)