Skip to content

Commit

Permalink
Merge pull request #158 from mashiike/feature/fix-staticlint
Browse files Browse the repository at this point in the history
fix static lint
  • Loading branch information
mashiike authored Mar 6, 2023
2 parents bb7fedf + 255bd82 commit 1eada5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func (app *App) DriveIDs(ctx context.Context) ([]string, error) {
}
drivesListResp, err := cell.Do()
if err != nil {
return nil, fmt.Errorf("Drives::list %w", err)
return nil, fmt.Errorf("access Drives::list %w", err)
}
for _, driveResp := range drivesListResp.Drives {
log.Printf("[info] auto detect `%s (%s)`", driveResp.Id, driveResp.Name)
Expand Down

0 comments on commit 1eada5a

Please sign in to comment.