Skip to content

Commit

Permalink
Fix missing import on Windows (#3035)
Browse files Browse the repository at this point in the history
  • Loading branch information
zwass committed Nov 19, 2021
1 parent a6e9d55 commit f885522
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ee/fleetctl/updates_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@

package eefleetctl

import "github.com/urfave/cli/v2"
import (
"errors"

"github.com/urfave/cli/v2"
)

func UpdatesCommand() *cli.Command {
// Update management is disabled on Windows because file permissions need to be very particular
Expand Down

1 comment on commit f885522

@vercel
Copy link

@vercel vercel bot commented on f885522 Nov 19, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.