oh-my-git/scenes/shell_command.gd
Morten Minde Neergaard 348c24dda5 terminal: handle basic coloring
This closes issue #156
2022-11-03 09:38:23 +01:00

16 lines
264 B
GDScript

extends Node
class_name ShellCommand
signal done
var command
var pretty_command = null
var output
var exit_code
var crash_on_fail = true
var thread
func _unused():
# This is just to suppress a warning about the signal never being emitted.
emit_signal("done")