mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-24 23:15:39 +00:00
Array to String needed afterall
This commit is contained in:
parent
4b656fadad
commit
a170edc673
File diff suppressed because one or more lines are too long
|
@ -126,7 +126,7 @@ func execute_command(command: String, parameters: Array, console: bool) -> Dicti
|
|||
var result = {}
|
||||
var output = []
|
||||
var exit_code = OS.execute(command, parameters, output, console) ## add if exit == 0 etc
|
||||
result["output"] = str(output)
|
||||
result["output"] = class_functions.array_to_string(output)
|
||||
result["exit_code"] = exit_code
|
||||
return result
|
||||
|
||||
|
|
Loading…
Reference in a new issue