diff options
author | Christopher Baines <mail@cbaines.net> | 2022-05-06 14:30:47 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2022-05-06 14:30:47 +0100 |
commit | ea997c68515540e34bda267730b9c7c6f21ff6b4 (patch) | |
tree | 20b453e047590abc75b0318acf52ce878019fcb2 | |
parent | ad9452e63a0a60f79146efd714f081b6c898449e (diff) | |
download | nar-herder-ea997c68515540e34bda267730b9c7c6f21ff6b4.tar nar-herder-ea997c68515540e34bda267730b9c7c6f21ff6b4.tar.gz |
Fix the 'and removal criteria
-rw-r--r-- | nar-herder/storage.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nar-herder/storage.scm b/nar-herder/storage.scm index 386bacf..806a892 100644 --- a/nar-herder/storage.scm +++ b/nar-herder/storage.scm @@ -207,7 +207,8 @@ (match criteria (('and and-criteria ...) - (every check-removal-criteria criteria)) + (every check-removal-criteria + and-criteria)) (('stored-on url) (let ((uri (string->uri (string-append url |