Upgrade golang/sys to fix warning (#246)

Language server complains about
`invalid operation: operator | not defined on windows.TOKEN_ADJUST_PRIVILEGES`
in `privilege.go`. Upgrading to new golang.org/x/sys fixes issue.

Signed-off-by: Hamza El-Saawy <hamzaelsaawy@microsoft.com>
This commit is contained in:
Hamza El-Saawy
2022-05-10 14:34:13 -04:00
committed by GitHub
parent 87532d1cfe
commit bdacbf1c28
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -4,5 +4,5 @@ go 1.17
require (
github.com/sirupsen/logrus v1.7.0
golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c
golang.org/x/sys v0.0.0-20220422013727-9388b58f7150
)