Show deleted files in the working directory and the index

This commit is contained in:
blinry 2020-11-10 15:27:42 +01:00
parent 20358f78a1
commit 107d6f8fb1
3 changed files with 29 additions and 13 deletions

View file

@ -11,6 +11,12 @@ func crash(message):
# Violent delights have violent ends.
get_tree().fatal_error()
func map(array, object, f):
var new_array = []
for i in range(array.size()):
new_array.push_back(object.call(f, array[i]))
return new_array
# Run a simple command with arguments, blocking, using OS.execute.
func exec(command, args=[], crash_on_fail=true):
var debug = false