Add error check

pull/8209/head
Davor Kapsa 7 years ago committed by GitHub
parent 046f94c996
commit fb267dd1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -108,6 +108,9 @@ func (s *StepDeleteResourceGroup) deleteDeploymentResources(ctx context.Context,
}
return err
})
if err != nil {
return err
}
if err = deploymentOperations.Next(); err != nil {
return err

Loading…
Cancel
Save