Skip to content

Commit

Permalink
fixing lint error in sync.go
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnHartsell committed Jan 16, 2024
1 parent 3b3893d commit c7838fc
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ func Sync(ctx context.Context, flags *SyncFlags) error {
if err := Pull(ctx, pullFlags); err != nil {
return err
}
if err := Push(ctx, pushFlags); err != nil {
return err
}
return nil

err := Push(ctx, pushFlags)
return err
}

0 comments on commit c7838fc

Please sign in to comment.