project update: fix .gitattributes

It's `linguist-generated=true` per the documentation.

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi 2022-03-10 13:50:39 -08:00
parent 0ede82f597
commit 5be67bf1bb

View File

@ -73,7 +73,7 @@ func Vendor(ctx context.Context, p string) error {
// generate `.gitattributes` file
if err := os.WriteFile(
path.Join(cuePkgDir, ".gitattributes"),
[]byte("# generated by dagger\n** linguist-generated\n"),
[]byte("# generated by dagger\n** linguist-generated=true\n"),
0600,
); err != nil {
return err