Skip to content

Commit

Permalink
Merge pull request #164 from tofuutils/fix/tg-win
Browse files Browse the repository at this point in the history
fix: terragrunt installation on Windows
  • Loading branch information
kvendingoldo authored Jun 11, 2024
2 parents 2e22c96 + 404b078 commit 8e3ce52
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 8e3ce52

Please sign in to comment.