args as array for commands

This commit is contained in:
Adam R. Grey 2021-12-04 04:19:53 -05:00
parent d88ee494fa
commit 325a0f3169
2 changed files with 2 additions and 2 deletions

View File

@ -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);

View File

@ -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; }
} }
} }