bump dependencies
Some checks are pending
Go Build / build (push) Waiting to run

This commit is contained in:
raf 2025-01-08 13:35:18 +03:00
commit 90a5b894e9
No known key found for this signature in database
GPG key ID: EED98D11B85A2819
66 changed files with 806 additions and 356 deletions

View file

@ -28,8 +28,8 @@ import (
func genPowerShellComp(buf io.StringWriter, name string, includeDesc bool) {
// Variables should not contain a '-' or ':' character
nameForVar := name
nameForVar = strings.Replace(nameForVar, "-", "_", -1)
nameForVar = strings.Replace(nameForVar, ":", "_", -1)
nameForVar = strings.ReplaceAll(nameForVar, "-", "_")
nameForVar = strings.ReplaceAll(nameForVar, ":", "_")
compCmd := ShellCompRequestCmd
if !includeDesc {