Skip to content

Commit

Permalink
chore: satisfy golangci-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
soedirgo committed Oct 18, 2021
1 parent eb08cc6 commit fb935d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/link/link.go
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,9 @@ EOSQL
if err != nil {
return err
}
f.Write(diffBytes)
if _, err := f.Write(diffBytes); err != nil {
return err
}

if err := f.Close(); err != nil {
return err
Expand Down
1 change: 1 addition & 0 deletions internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ func DockerRemoveAll() {
}); err != nil {
// TODO: Handle errors
// fmt.Fprintln(os.Stderr, err)
_ = err
}

wg.Done()
Expand Down

0 comments on commit fb935d1

Please sign in to comment.