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
{{ message }}
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
error (ignored): writing to file: Bad file descriptor
error: invalid regular expression ‘^\.stack-work/downloaded/zrAzVbT4hDDB/buildUtils/(.*/|)[^/]*\.hi’, at /nix/store/ssdx84fbg92ql3mifvwk2j6fzrnp7irg-source/default.nix:24:26
I discovered that if I delete the .stack-work directory from the project root, this error goes away. This is a blocker for me using this package because some people on my team use stack and I can't have that breaking my build. If it was something about how I write my .gitignore files, I might be able to work around it. But it's not about that because deleting .stack-work fixed the problem with no change to the .gitignore file.
The text was updated successfully, but these errors were encountered:
Change to the nix-gitignore-test branch and then do nix-build. It should work fine. Now create a directory called foo and then create foo/.gitignore with the following contents:
builtins.match "(.*/|)" "" doesn't work because of NixOS/nix#1537. (.*/|) and can be replaced with (.*/)?, which seems to be working judging by ./test.sh.
I'm getting the following error:
I discovered that if I delete the
.stack-work
directory from the project root, this error goes away. This is a blocker for me using this package because some people on my team use stack and I can't have that breaking my build. If it was something about how I write my.gitignore
files, I might be able to work around it. But it's not about that because deleting.stack-work
fixed the problem with no change to the.gitignore
file.The text was updated successfully, but these errors were encountered: