lib.fileset
: Lazier path existence check
#267091
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of changes
Allows things like
difference ./. ./a
even if./a
doesn't exist.Another case that's now doable is
intersection ./a (union ./a ./b)
even if./b
doesn't exist.This is an alternative to #265964 that doesn't require a new function and is more transparent to the user.
It's not perfect however, because
difference ./. (difference ./a ./a/b)
doesn't give an error anymore if
./a/b
doesn't exist. We can maybe consider this an edge case. This could be fixed in the future, but would need a non-trivial change to the internal representation.More problematic however is that you aren't protected against typos in the negative argument anymore: If you want to remove
./secret
, but you writedifference ./. ./sercet
instead, it would just fail silently and import the path into the store! This is making me think that we maybe shouldn't do this.This work is sponsored by Antithesis ✨
Things done