Merge pull request #1762 from aluzzardi/fix-gitattributes

project update: fix .gitattributes
This commit is contained in:
Andrea Luzzardi 2022-03-10 14:01:05 -08:00 committed by GitHub
commit 7a117574ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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