[Blends-commit] [Git][blends-team/blends][experimental] Fix suppression of empty tasks
Ole Streicher
gitlab at salsa.debian.org
Tue Apr 10 15:58:10 UTC 2018
Ole Streicher pushed to branch experimental at Debian Blends Team / blends
Commits:
e39204f2 by Ole Streicher at 2018-04-10T17:51:27+02:00
Fix suppression of empty tasks
- - - - -
1 changed file:
- devtools/blend-gen-control
Changes:
=====================================
devtools/blend-gen-control
=====================================
--- a/devtools/blend-gen-control
+++ b/devtools/blend-gen-control
@@ -96,7 +96,7 @@ missing = blend.fix_dependencies()
if args.suppressempty:
for task in blend.tasks[:]:
- if len(task.recommends) == 0 and len(task.dependencies) > 0:
+ if len(task.recommends) == 0 and len(task.dependencies) == 0:
blend.tasks.remove(task)
if missing and args.missing:
View it on GitLab: https://salsa.debian.org/blends-team/blends/commit/e39204f2ccf596863523bdc853dcbe67d8a638ed
---
View it on GitLab: https://salsa.debian.org/blends-team/blends/commit/e39204f2ccf596863523bdc853dcbe67d8a638ed
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.alioth.debian.org/pipermail/blends-commit/attachments/20180410/6ae9d23c/attachment.html>
More information about the Blends-commit
mailing list