Skip to content

Commit

Permalink
handle updated plugin schema
Browse files Browse the repository at this point in the history
  • Loading branch information
akerl committed Jan 27, 2023
1 parent 2afda3c commit 15f235f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/akerl/prospectus-script

go 1.19

require github.com/akerl/prospectus/v3 v3.0.0-20230120042104-38bb3b1af190
require github.com/akerl/prospectus/v3 v3.0.1

require (
github.com/ghodss/yaml v1.0.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/akerl/prospectus/v3 v3.0.0-20230120042104-38bb3b1af190 h1:VI02qEqZhmUlYA0bJEWyTJoCvNkLIaClva0PkTWtKx8=
github.com/akerl/prospectus/v3 v3.0.0-20230120042104-38bb3b1af190/go.mod h1:9kryC2hxZtzi2SKI/UIBgXVOx0hladf2qDzkcW+xMe0=
github.com/akerl/prospectus/v3 v3.0.1 h1:4AsrBFXhN2D1cjNBRl1I9OwrOJ7KgLhi0lcdMbx0BH4=
github.com/akerl/prospectus/v3 v3.0.1/go.mod h1:9kryC2hxZtzi2SKI/UIBgXVOx0hladf2qDzkcW+xMe0=
github.com/ghodss/yaml v1.0.0 h1:wQHKEahhL6wmXdzwWG11gIVCkOv05bNOh+Rxn0yngAk=
github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func run(cfg config) error {

func main() {
cfg := config{}
err := plugin.ParseConfig(&cfg)
_, err := plugin.ParseConfig(&cfg)
if err != nil {
fmt.Fprintf(os.Stderr, "failed to load config: %s", err)
os.Exit(1)
Expand Down

0 comments on commit 15f235f

Please sign in to comment.