From 8cff4cf5aa9998cf32f7d57ea8f59bf8db2a371a Mon Sep 17 00:00:00 2001 From: Mark Date: Tue, 25 Feb 2025 19:39:16 -0800 Subject: [PATCH] ci? --- tools/scripts/publish.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/scripts/publish.py b/tools/scripts/publish.py index 2a9c795..3304fa4 100644 --- a/tools/scripts/publish.py +++ b/tools/scripts/publish.py @@ -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}")