Skip to content

Commit 4f3202d

Browse files
chore(deps): update gabe565.com/utils digest to ede73b1 (#128)
* chore(deps): update gabe565.com/utils digest to ede73b1 * chore: Remove custom completion flag --------- Co-authored-by: gabe565-renovate[bot] <156644344+gabe565-renovate[bot]@users.noreply.github.com> Co-authored-by: Gabe Cook <gabe565@gmail.com>
1 parent 9f15178 commit 4f3202d

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

docs/castsponsorskip.md

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ castsponsorskip [flags]
2525
```
2626
--action-types strings SponsorBlock action types to handle. Shorter segments that overlap with content can be muted instead of skipped. (default [skip,mute])
2727
-c, --categories strings Comma-separated list of SponsorBlock categories to skip (default [sponsor])
28-
--completion string Generate the autocompletion script for the specified shell (one of bash, zsh, fish, powershell)
2928
--config string Config file path
3029
--devices strings Comma-separated list of device addresses. This will disable discovery and is not recommended unless discovery fails
3130
--discover-interval duration Interval to restart the DNS discovery client (default 5m0s)

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module gabe565.com/castsponsorskip
33
go 1.24.0
44

55
require (
6-
gabe565.com/utils v0.0.0-20241213205714-152b8de1d3fe
6+
gabe565.com/utils v0.0.0-20250302063333-ede73b14282c
77
github.com/buger/jsonparser v1.1.1
88
github.com/dmarkham/enumer v1.5.10
99
github.com/jedib0t/go-pretty/v6 v6.6.7

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ cloud.google.com/go/auth/oauth2adapt v0.2.7 h1:/Lc7xODdqcEw8IrZ9SvwnlLX6j9FHQM74
44
cloud.google.com/go/auth/oauth2adapt v0.2.7/go.mod h1:NTbTTzfvPl1Y3V1nPpOgl2w6d/FjO7NNUQaWSox6ZMc=
55
cloud.google.com/go/compute/metadata v0.6.0 h1:A6hENjEsCDtC1k8byVsgwvVcioamEHvZ4j01OwKxG9I=
66
cloud.google.com/go/compute/metadata v0.6.0/go.mod h1:FjyFAW1MW0C203CEOMDTu3Dk1FlqW3Rga40jzHL4hfg=
7-
gabe565.com/utils v0.0.0-20241213205714-152b8de1d3fe h1:/QXzT2uIjZJBhJ8eADVxXMPZT716LpRVLj4TeZm+Qz0=
8-
gabe565.com/utils v0.0.0-20241213205714-152b8de1d3fe/go.mod h1:6FZP8OeF0k3hTsPClyDGEILcBg3hvGcSp4u4pmjMusY=
7+
gabe565.com/utils v0.0.0-20250302063333-ede73b14282c h1:740ifPX0340EHhAPnr5PJ5FgpDFMX3EEmd8CMLcSi5I=
8+
gabe565.com/utils v0.0.0-20250302063333-ede73b14282c/go.mod h1:zPhcEoKWZOPz7CH+g3nzkKY/AOs+QEo9SokKKkJyq2U=
99
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
1010
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
1111
github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4=

internal/config/config.go

-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ import (
77
"time"
88

99
"gabe565.com/castsponsorskip/internal/config/names"
10-
"gabe565.com/utils/cobrax"
11-
"gabe565.com/utils/must"
1210
"github.com/spf13/cobra"
1311
castdns "github.com/vishen/go-chromecast/dns"
1412
)
@@ -57,7 +55,6 @@ func New() *Config {
5755
func RegisterFlags(cmd *cobra.Command) {
5856
fs := cmd.Flags()
5957
c := New()
60-
must.Must(cobrax.RegisterCompletionFlag(cmd))
6158

6259
fs.String(names.FlagConfig, "", "Config file path")
6360
fs.String(names.FlagLogLevel, c.LogLevel, "Log level (one of: debug, info, warn, error, none)")

0 commit comments

Comments
 (0)