needy icon indicating copy to clipboard operation
needy copied to clipboard

Assert that somefile.x is present after building.

Open ccbrown opened this issue 8 years ago • 1 comments

If there's a problem with a build, this will save time by erroring out immediately, and making it really clear where the error occurred. Usage might look something like...

libraries:
    hiredis:
        repository: [email protected]:redis/hiredis.git
        commit: v0.13.2
        project:
            ensures: lib/libhiredis.a

ccbrown avatar Jun 12 '16 04:06 ccbrown

It also makes sense to allow negation:

libraries:
    hiredis:
        repository: [email protected]:redis/hiredis.git
        commit: v0.13.2
        project:
            ensures:
                - lib/libhiredis.a
                - !lib/libhiredis.dylib

And in those cases, maybe Needy should just delete files that shouldn't be there.

ccbrown avatar Jun 12 '16 05:06 ccbrown