Skip to content

Commit c8224de

Browse files
author
Guillaume Chau
committed
fix(ui): don't split on '='
1 parent 529f1ee commit c8224de

File tree

1 file changed

+1
-1
lines changed
  • packages/@vue/cli-ui/apollo-server/connectors

1 file changed

+1
-1
lines changed

packages/@vue/cli-ui/apollo-server/connectors/tasks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async function run (id, context) {
225225

226226
// Process command containing args
227227
if (command.indexOf(' ')) {
228-
const parts = command.split(/\s+|=/)
228+
const parts = command.split(/\s+/)
229229
command = parts.shift()
230230
args = parts
231231
}

0 commit comments

Comments
 (0)