From 08862d56c5ddbb92d989a9d475db4a66722e5c72 Mon Sep 17 00:00:00 2001 From: Nathaniel van Diepen Date: Tue, 17 Dec 2024 16:19:45 -0700 Subject: [PATCH] only warn when there are no packages --- scripts/package.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/package.py b/scripts/package.py index bf988af..526c366 100644 --- a/scripts/package.py +++ b/scripts/package.py @@ -292,8 +292,7 @@ def publish(self): with os.scandir("repo") as d: if not any(d): - print(t.red(" There are no packages")) - return + print(t.yellow(" There are no packages")) PackageConfig.pull(self.image) cidirname = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))