Skip to content

Commit 67e9846

Browse files
committed
Use path.join in test manifest
1 parent 9c57f46 commit 67e9846

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/manifest.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
'use strict'
22

3-
const originRoot = `${__dirname}/root`
4-
const targetRoot = `${__dirname}/dest`
3+
const path = require('path')
4+
5+
const originRoot = path.join(__dirname, 'root')
6+
const targetRoot = path.join(__dirname, 'dest')
57

68
const pkgType = undefined
79
const ioType = undefined

0 commit comments

Comments
 (0)