Skip to content

Commit

Permalink
fix: terragrunt installation on Windows
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Sharov <kvendingoldo@yandex.ru>
  • Loading branch information
kvendingoldo committed Jun 11, 2024
1 parent 2e22c96 commit 404b078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion versionmanager/retriever/terragrunt/terragruntretriever.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (r TerragruntRetriever) InstallRelease(versionStr string, targetPath string
return err
}

return os.WriteFile(filepath.Join(targetPath, config.TerragruntName), data, 0755)
return os.WriteFile(filepath.Join(targetPath, fileName), data, 0755)
}

func (r TerragruntRetriever) ListReleases() ([]string, error) {
Expand Down

0 comments on commit 404b078

Please sign in to comment.