Added some more verbosity to script.

This commit is contained in:
BuildTools 2021-04-01 16:26:55 -05:00
parent b1afcacbca
commit f7021195f5

View File

@ -147,9 +147,11 @@ def reset() -> None:
pomxmldir = find_pomxmldir()
if os.path.exists(pomxmldir):
shutil.rmtree(pomxmldir)
print("Deleted Maven project directory.")
if os.path.exists(DEV_SERVER_PATH):
shutil.rmtree(DEV_SERVER_PATH)
print("Deleted development server directory.")
def find_pomxml() -> str:
return find_pomxmldir() + "/pom.xml"