diff options
author | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-02-27 22:44:09 +0200 |
---|---|---|
committer | xAlpharax <42233094+xAlpharax@users.noreply.github.com> | 2023-02-27 22:44:09 +0200 |
commit | bd19b46d7544ff94be0e8eaccb4e1bd18d44b996 (patch) | |
tree | 4ca021df24e00b9b8c4a219fa4dc8fea3f8d989a /clear_dir.sh | |
parent | 6fe8a3228e3170600b68d9b19e3b8f07e51222fe (diff) |
Multi-threaded renderer implemented successfully. Better error handling. Minor changes in multiple areas
Diffstat (limited to 'clear_dir.sh')
-rwxr-xr-x | clear_dir.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clear_dir.sh b/clear_dir.sh index 57f891a..fef1764 100755 --- a/clear_dir.sh +++ b/clear_dir.sh @@ -1,7 +1,7 @@ -#!/bin/zsh +#!/bin/bash ### clearing up the directory ### from temporary files rm -rf __pycache__ # Output* future proof -rm -f Output/* *.npy +rm -f Output/*.png *.npy |