Skip to content

Commit

Permalink
DRY
Browse files Browse the repository at this point in the history
  • Loading branch information
tommartensen committed Dec 15, 2023
1 parent 61f083c commit ab75f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/local-dev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func determineValues() (map[string]interface{}, error) {
}

func renderFile(path, content string, decodeString bool) error {
configPath := fmt.Sprintf("configuration/%s", path)
configPath := fmt.Sprintf("%s%s", localConfigurationDir, path)
dir := filepath.Dir(configPath)
err := os.MkdirAll(dir, os.ModePerm)
if err != nil {
Expand Down

0 comments on commit ab75f02

Please sign in to comment.