Skip to content
This repository was archived by the owner on Jul 18, 2019. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/taskcluster-run.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if (args._.length < 2) {
var image = args._[0];
// Arguments for docker cmd (note that we do not specify a shell here very
// similar to how docker run does not specify a default shell for commands)
var command = args._.slice(1);
var command = args._.slice(1).toString().split(" ");
}

// Command line arguments should take precedence over those listed in the env
Expand Down