Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Commit

Permalink
Fix typo in app release
Browse files Browse the repository at this point in the history
  • Loading branch information
briancain committed Jul 19, 2021
1 parent bbf1ac4 commit e5a3ee4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/core/app_release.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ func (a *App) Release(ctx context.Context, target *pb.Deployment) (
"err", err)
}

unimplemeneted := false
unimplemented := false
c, err := a.createReleaser(ctx, &evalCtx)
if status.Code(err) == codes.Unimplemented {
c = nil
err = nil
unimplemeneted = true
unimplemented = true
}
if err != nil {
return nil, nil, err
Expand All @@ -80,7 +80,7 @@ func (a *App) Release(ctx context.Context, target *pb.Deployment) (

if releasepb != nil {
rpb := releasepb.(*pb.Release)
rpb.Unimplemented = unimplemeneted
rpb.Unimplemented = unimplemented
releasepb = rpb
}

Expand Down

0 comments on commit e5a3ee4

Please sign in to comment.