Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yorinasub17 committed Aug 14, 2019
1 parent 38aca82 commit bc70249
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions config/terragrunt_output.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ func decodeAndRetrieveOutputs(
// Convert the list of parsed TerragruntOutput blocks into a list of module dependencies. Each output block should
// become a dependency of the current config, since that module has to be applied before we can read the output.
func terragruntOutputsToModuleDependencies(decodedOutputBlocks []TerragruntOutput) *ModuleDependencies {
if len(decodedOutputBlocks) == 0 {
return nil
}

paths := []string{}
for _, decodedOutputBlock := range decodedOutputBlocks {
configPath := decodedOutputBlock.ConfigPath
Expand Down

0 comments on commit bc70249

Please sign in to comment.