Skip to content

Commit 2bc581a

Browse files
committed
fix: Using absolute paths on Unix.
1 parent 88ee8de commit 2bc581a

File tree

1 file changed

+2
-0
lines changed
  • packages/@vue/cli-shared-utils/lib

1 file changed

+2
-0
lines changed

packages/@vue/cli-shared-utils/lib/env.js

+2
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ exports.getPipePath = (id) => {
224224
id = id.replace(/^\//, '')
225225
id = id.replace(/\//g, '-')
226226
id = `\\\\.\\pipe\\${id}`
227+
} else {
228+
id = `/tmp/app.${id}`
227229
}
228230
return id
229231
}

0 commit comments

Comments
 (0)