Skip to content

Commit

Permalink
another update
Browse files Browse the repository at this point in the history
Signed-off-by: adisos <[email protected]>
  • Loading branch information
adisos committed Nov 1, 2023
1 parent 44b1f85 commit a7fc33c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions cmd/analyzer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,10 @@ func _main(cmdlineArgs []string) error {

outputPerVPC := make([]*vpcmodel.VPCAnalysisOutput, len(vpcConfigs))
i := 0
var vpcAnalysisOutput *vpcmodel.VPCAnalysisOutput
for _, vpcConfig := range vpcConfigs {
vpcAnalysisOutput, err = analysisPerVPCConfig(vpcConfig, inArgs, outFile)
if err != nil {
return err
vpcAnalysisOutput, err2 := analysisPerVPCConfig(vpcConfig, inArgs, outFile)
if err2 != nil {
return err2
}
outputPerVPC[i] = vpcAnalysisOutput
i++
Expand Down

0 comments on commit a7fc33c

Please sign in to comment.