Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7c692a83
...
7c692a83a02813a7aec34545886df0fb4a351466
authored
2013-03-14 15:59:29 -0600
by
hexid
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
refs #225 - Fix raw CLI args being casted
1 parent
4817c308
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
modules/cli.js
modules/cli.js
View file @
7c692a8
...
...
@@ -108,7 +108,7 @@ exports.parse = function parse(phantomArgs) {
}
else
{
// positional arg
extract
.
args
.
push
(
castArgument
(
arg
));
extract
.
raw
.
args
.
push
(
castArgument
(
arg
)
);
extract
.
raw
.
args
.
push
(
arg
);
}
});
extract
.
raw
=
utils
.
mergeObjects
(
extract
.
raw
,
{
...
...
Please
register
or
sign in
to post a comment