fix: lint errors and update Nix vendorHash

- Add nolint:unparam for readOnly param in sqlite_open.go
- Handle cmd.Help() error in wisp.go
- Handle rows.Close() error in migration 028
- Handle targetStore.Close() error in create.go
- Update Nix vendorHash for current dependencies

Cherry-picked from PR #769
This commit is contained in:
matt wilkie
2025-12-27 17:29:36 -08:00
committed by Steve Yegge
parent 99f5e50a32
commit d3fe6b0f32
5 changed files with 9 additions and 4 deletions

View File

@@ -108,7 +108,7 @@ func MigrateTombstoneClosedAt(db *sql.DB) error {
var notnull, pk int
var dflt interface{}
if err := rows.Scan(&cid, &name, &ctype, &notnull, &dflt, &pk); err != nil {
rows.Close()
_ = rows.Close()
return fmt.Errorf("failed to scan table info: %w", err)
}
if name == "created_by" {