Skip to content

Commit

Permalink
Merge pull request #18 from hashicorp/schemasbug
Browse files Browse the repository at this point in the history
Fix schemas bug
  • Loading branch information
kmoe authored Jul 8, 2020
2 parents 374c14c + 477dbfa commit 119839f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tfexec/terraform.go
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ func (tf *Terraform) ProvidersSchema(ctx context.Context) (*tfjson.ProviderSchem
return nil, parseError(errBuf.String())
}

err = json.Unmarshal(outBuf.Bytes(), ret)
err = json.Unmarshal(outBuf.Bytes(), &ret)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 119839f

Please sign in to comment.