[Issue 14750] druntime/test/coverage was added to druntime, but not to the MANIFEST - zip file broken again

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Tue Jul 7 03:21:10 PDT 2015


https://issues.dlang.org/show_bug.cgi?id=14750

--- Comment #6 from Martin Nowak <code at dawg.eu> ---
(In reply to Walter Bright from comment #5)
> It fails because the files necessary are not there. What's the point of
> having a MANIFEST if it is only a subset of the manifest?

Exactly, let's delete MANIFEST. The question is why you need it or the zip
rule.
We could replace the rule with
    git archive --format=zip HEAD > druntime.zip
or
    zip druntime.zip $(git ls-files)
depending on whether or not modified working dir files should end up in the
zip.

--


More information about the Digitalmars-d-bugs mailing list