feat: preserve dir structure for custom recipes#383
Conversation
|
Claude finished @fkondej's task in 2m 10s —— View job PR Review: feat: preserve dir structure for custom recipes
Overall this is a clean change — preserving subdirectory structure and applying correct file permissions are both solid improvements. A few issues to address: YAML filter skips subdirectory YAML filesBoth if (strings.HasSuffix(fileName, ".yaml") || strings.HasSuffix(fileName, ".yml")) && fileName != yamlFile {
return nil
}This skips any YAML/YML file that isn't if relPath == fileName && (strings.HasSuffix(fileName, ".yaml") || ...) && fileName != yamlFile {See inline comment for details. Missing trailing newline
Minor observations
|
|
Claude finished @fkondej's task in 59s —— View job PR Review: feat: preserve dir structure for custom recipes
The previous review's two main issues have both been addressed:
Remaining observationsThe code changes look clean. Subdirectory preservation via No new issues found — LGTM. |
No description provided.