Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/cygwin-apps/calm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-09-14 19:58:39 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2022-09-15 14:54:55 +0300
commitca35f6a964ae535084a42dfdf085c35e4f4a7c36 (patch)
treed9eaed5fbadb7d41532b8f03dbb4ee065cf66743
parenta01c7c3edc8f13a1c8e13238912381cec50c752d (diff)
Drop special treatment for !packages in upload area
We stopped generating these files a while ago.
-rw-r--r--calm/uploads.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/calm/uploads.py b/calm/uploads.py
index db26f80..818d065 100644
--- a/calm/uploads.py
+++ b/calm/uploads.py
@@ -206,9 +206,8 @@ def scan(scandir, m, all_packages, arch, args):
rel_fn = os.path.join(relpath, f)
logging.debug("processing %s" % rel_fn)
- # ignore !packages (which we no longer use)
# ignore !mail and !email (which we have already read)
- if f in ['!packages', '!mail', '!email']:
+ if f in ['!mail', '!email']:
files.remove(f)
continue