Skip to content

Commit

Permalink
maint: fix last revive occurrence (#919)
Browse files Browse the repository at this point in the history
Introduced after the PR that handled all these.

![](https://media1.tenor.com/m/ug6zbZKnHVsAAAAd/skeletor-one-day.gif)

Fixes UDENG-2287
  • Loading branch information
GabrielNagy authored Feb 21, 2024
2 parents 19cfcf7 + 98dbe80 commit 498df8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/adsysd/client/policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func (a *App) installPolicy() {
The command is a no-op if the ticket is not present on disk or the detect_cached_ticket setting is not true.`),
Args: cmdhandler.ZeroOrNArgs(1),
ValidArgsFunction: cmdhandler.NoValidArgs,
RunE: func(cmd *cobra.Command, args []string) error {
RunE: func(_ *cobra.Command, args []string) error {
var username string
if len(args) > 0 {
username = args[0]
Expand Down

0 comments on commit 498df8f

Please sign in to comment.