Skip to content

Commit

Permalink
Fixing build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
samlown committed Nov 18, 2024
1 parent 5ee461a commit 00cd01a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/gobl.ticketbai/cancel.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (c *cancelOpts) runE(cmd *cobra.Command, args []string) error {
if c.production {
opts = append(opts, ticketbai.InProduction())
} else {
opts = append(opts, ticketbai.InTesting())
opts = append(opts, ticketbai.InSandbox())
}

tc, err := ticketbai.New(c.software(), zone, opts...)
Expand Down
2 changes: 1 addition & 1 deletion cmd/gobl.ticketbai/send.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (c *sendOpts) runE(cmd *cobra.Command, args []string) error {
if c.production {
opts = append(opts, ticketbai.InProduction())
} else {
opts = append(opts, ticketbai.InTesting())
opts = append(opts, ticketbai.InSandbox())
}

tc, err := ticketbai.New(c.software(), zone, opts...)
Expand Down

0 comments on commit 00cd01a

Please sign in to comment.