1
0

ci?
Some checks failed
CI / Typos (push) Successful in 7s
CI / Build (push) Successful in 45s
CI / Clippy (push) Failing after 53s

This commit is contained in:
Mark 2025-02-25 19:39:16 -08:00
parent 073c42b2eb
commit 8cff4cf5aa
Signed by: Mark
GPG Key ID: C6D63995FE72FD80

View File

@ -13,7 +13,6 @@ VERSION = os.environ["VERSION"]
AUTH = requests.auth.HTTPBasicAuth(USER, os.environ["PUBLISH_KEY"])
ROOT: Path = Path(os.getcwd())
SRC_DIR: Path = ROOT / "output"
def log(msg):
@ -27,11 +26,6 @@ if not ROOT.is_dir():
log("Root is not a directory, cannot continue")
exit(1)
log(f"Source dir is {SRC_DIR}")
if not SRC_DIR.exists():
log("Source dir doesn't exist, cannot continue")
exit(1)
def del_package():
log(f"Deleting package {PACKAGE}/{VERSION}")