This repository was archived by the owner on Jul 5, 2025. It is now read-only.
This repository was archived by the owner on Jul 5, 2025. It is now read-only.
System args not populating #57
Open
Description
Running the exe with these arguments:
\foo\foo\foo\foo\TrifleJS.exe \foo\foo\foo\foo\rasterize.js http://foo:123/foo/foo.html?foo=123 C:\foo\foo.png
When doing a loop thru system.args however, only returns this:
0: \foo\foo\foo\foo\rasterize.js
I expect this:
0: \foo\foo\foo\foo\rasterize.js
1: http://foo:123/foo/foo.html?foo=123
2: C:\foo\foo.png
Here is the command I'm running:
var system = require('system');
system.args.forEach(function(arg, i) {
console.log(i + ': ' + arg);
});
This is on beta 0.5
Metadata
Metadata
Assignees
Labels
No labels