This commit is contained in:
Pasha Sviderski
2025-11-20 16:04:06 +10:00
parent 6a1cd7bf87
commit f6d75d507c
+1 -1
View File
@@ -77,7 +77,7 @@ func LoadProjectFromContent(
// Write the YAML content to compose.yaml in the temporary directory.
composePath := filepath.Join(tmpDir, "compose.yaml")
if err := os.WriteFile(composePath, []byte(content), 0644); err != nil {
if err := os.WriteFile(composePath, []byte(content), 0o644); err != nil {
return nil, fmt.Errorf("write compose file: %w", err)
}