numtide / flake-utils

Pure Nix flake utility functions [maintainer=@zimbatm]
MIT License
1.14k stars 78 forks source link

Fix check-utils template directory name #70

Closed markus1189 closed 2 years ago

markus1189 commented 2 years ago

I got an error using the check-utils template:

$ nix flake init -t "github:numtide/flake-utils#check-utils"
error: opening directory '/nix/store/wk1zs2zxcb53qzkil3xjfvbc2lv51qzd-source/examples/check-utils': No such file or directory

In https://github.com/numtide/flake-utils/blob/04c1b180862888302ddfb2e3ad9eaa63afc60cf8/flake.nix#L14-L17 the path attribute specifies check-utils, but the directory name is checks-utils.

Fixed by renaming the directory: checks-utils -> check-utils

zimbatm commented 2 years ago

thanks!