1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-04 18:40:44 +02:00

avoid lower casing the command

fix https://github.com/seaweedfs/seaweedfs/pull/4321
This commit is contained in:
chrislu 2023-03-19 21:20:46 -07:00
parent 5b43c4bb98
commit adb90bd252

View file

@ -316,7 +316,7 @@ func processEachCmd(reg *regexp.Regexp, line string, commandEnv *shell.CommandEn
for i := range args {
args[i] = strings.Trim(string(cmds[1+i]), "\"'")
}
cmd := strings.ToLower(cmds[0])
cmd := cmds[0]
for _, c := range shell.Commands {
if c.Name() == cmd {