Skip to content

Commit

Permalink
make it less restrictive
Browse files Browse the repository at this point in the history
  • Loading branch information
dogancanbakir committed Feb 10, 2025
1 parent b90c758 commit 1f3efc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/catalog/loader/ai_loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ func getAIGeneratedTemplates(prompt string, options *types.Options) ([]string, e
}

templateFile := filepath.Join(pdcpTemplateDir, templateID+".yaml")
err = os.WriteFile(templateFile, []byte(template), 0600)
err = os.WriteFile(templateFile, []byte(template), 0644)
if err != nil {
return nil, errorutil.New("Failed to generate template: %v", err)
}
Expand Down

0 comments on commit 1f3efc2

Please sign in to comment.