Add error check

This commit is contained in:
Davor Kapsa 2019-10-09 21:08:40 +02:00 committed by GitHub
parent 046f94c996
commit fb267dd1dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -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