fix(task): ENV_VAR=value broken in commands

This commit is contained in:
Guillaume Chau
2019-05-16 15:41:35 +02:00
parent 0dbfa5a0bf
commit 3eabfad234

View File

@@ -2,7 +2,7 @@
* @param {string} args
*/
exports.parseArgs = function (args) {
const parts = args.split(/\s+|=/)
const parts = args.split(/\s+/)
const result = []
let arg
let index = 0