mirror of
https://github.com/open-goal/jak-project
synced 2026-07-09 06:53:45 -04:00
decomp: hint-control | menu | default-menu (as much as possible) (#632)
* decomp: mostly done `hint-control` * decomp: Started and decent chunk of `menu` done * temp stash * decomp: escape from `menu` hell * decomp: starting on `default-menu` * decomp: As much as i can do in `default-menu` at this time * decomp: clean up `hint-control` * decomp: fix reference tests * temp stash * decomp: finalize `menu` * decomp: add `menu` to goal_src * decomp: finalize `hint-control` * decomp: Resolve TypeConsistency issues * and fix reference tests * address feedback * format and lint * fix tests
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
# 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))
|
||||
Reference in New Issue
Block a user