From 5be67bf1bb93ef6e5a3ab726864d2cbecfc744c9 Mon Sep 17 00:00:00 2001 From: Andrea Luzzardi Date: Thu, 10 Mar 2022 13:50:39 -0800 Subject: [PATCH] project update: fix .gitattributes It's `linguist-generated=true` per the documentation. Signed-off-by: Andrea Luzzardi --- pkg/pkg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/pkg.go b/pkg/pkg.go index 13757962..221a7bfd 100644 --- a/pkg/pkg.go +++ b/pkg/pkg.go @@ -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