args as array for commands
This commit is contained in:
parent
d88ee494fa
commit
325a0f3169
@ -148,7 +148,7 @@ namespace director
|
|||||||
Telefranz.Instance.ProduceMessage(new silver_messages.directorial.execute_command()
|
Telefranz.Instance.ProduceMessage(new silver_messages.directorial.execute_command()
|
||||||
{
|
{
|
||||||
command = targetItem.cmd,
|
command = targetItem.cmd,
|
||||||
args = new List<string>() { targetItem.args }
|
args = targetItem.args
|
||||||
});
|
});
|
||||||
Console.WriteLine("seem to have survived");
|
Console.WriteLine("seem to have survived");
|
||||||
markLineDone(fileLineIndex, fileLines);
|
markLineDone(fileLineIndex, fileLines);
|
||||||
|
@ -9,6 +9,6 @@ namespace schedulable
|
|||||||
public string description { get; set; }
|
public string description { get; set; }
|
||||||
public LineType type { get; set; }
|
public LineType type { get; set; }
|
||||||
public string cmd { get; set; }
|
public string cmd { get; set; }
|
||||||
public string args { get; set; }
|
public List<string> args { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user