Windows fixes

This commit is contained in:
AlexSSD7 2023-09-03 14:08:24 +01:00
commit 1b69e6294d
7 changed files with 30 additions and 20 deletions

View file

@ -45,5 +45,9 @@ func validateArgStrValue(s string) error {
return fmt.Errorf("backslashes are not allowed")
}
if strings.Contains(s, "=") {
return fmt.Errorf("equals sign is not allowed")
}
return nil
}