Skip to content
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
@zielinskin

Description

@zielinskin

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions