You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just struggled with a Flake for a while and finally figured out some sources were being excluded from the Flake because ignore rules were being handled differently than Git itself does.
!scripts/*.inscripts/*
In Git, this will result in all the autoconf template files ending with .in being tracked and everything else in the scripts directory (the AC_CONFIG_FILE output in my case) ignored. With gitignoreSource the order of operations is different and everything is getting ignored.
The text was updated successfully, but these errors were encountered:
I just struggled with a Flake for a while and finally figured out some sources were being excluded from the Flake because ignore rules were being handled differently than Git itself does.
In Git, this will result in all the autoconf template files ending with
.in
being tracked and everything else in the scripts directory (theAC_CONFIG_FILE
output in my case) ignored. WithgitignoreSource
the order of operations is different and everything is getting ignored.The text was updated successfully, but these errors were encountered: