refs #225 - Fix raw CLI args being casted
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -108,7 +108,7 @@ exports.parse = function parse(phantomArgs) { | ... | @@ -108,7 +108,7 @@ exports.parse = function parse(phantomArgs) { |
108 | } else { | 108 | } else { |
109 | // positional arg | 109 | // positional arg |
110 | extract.args.push(castArgument(arg)); | 110 | extract.args.push(castArgument(arg)); |
111 | extract.raw.args.push(castArgument(arg)); | 111 | extract.raw.args.push(arg); |
112 | } | 112 | } |
113 | }); | 113 | }); |
114 | extract.raw = utils.mergeObjects(extract.raw, { | 114 | extract.raw = utils.mergeObjects(extract.raw, { | ... | ... |
-
Please register or sign in to post a comment