Make sure argsSet verifies string isn't empty too (#4980)
This commit is contained in:
parent
4a685f8b87
commit
a82ba73346
1 changed files with 5 additions and 0 deletions
|
@ -9,6 +9,7 @@ package cmd
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
|
|
||||||
"code.gitea.io/gitea/models"
|
"code.gitea.io/gitea/models"
|
||||||
"code.gitea.io/gitea/modules/setting"
|
"code.gitea.io/gitea/modules/setting"
|
||||||
|
@ -22,6 +23,10 @@ func argsSet(c *cli.Context, args ...string) error {
|
||||||
if !c.IsSet(a) {
|
if !c.IsSet(a) {
|
||||||
return errors.New(a + " is not set")
|
return errors.New(a + " is not set")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(strings.TrimSpace(c.String(a))) == 0 {
|
||||||
|
return errors.New(a + " is required")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue