Files
jak-project/scripts/tasks/default-file-or-folder.py
T
Tyler Wilding eaac247074 Decompiler: Cleanup CLI and make overriding the config much easier (#1711)
* decomp: cleaned up CLI for decompiler

* decomp: much more flexible and clean decomp override mechanism

* decomp: cleanup scripts
2022-07-29 20:10:11 -04:00

16 lines
419 B
Python

# Windows doesn't have the GNU toolchain by default, making it hard to write Taskfiles that are cross-platform
# This "solves" that
# Ensures it only will delete from the current directory
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("--path")
args = parser.parse_args()
from os import path
import shutil
if path.exists("./{}".format(args.path)):
shutil.rmtree("./{}".format(args.path))