Support git versions that don't recognize --no-verbose

This commit is contained in:
Mislav Marohnić 2018-12-11 10:30:24 +00:00
Родитель 9bb5ffa9e7
Коммит 7642e5b973
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -358,6 +358,10 @@ func gitCmd(args ...string) *cmd.Cmd {
func IsBuiltInGitCommand(command string) bool {
helpCommandOutput, err := gitOutput("help", "--no-verbose", "-a")
if err != nil {
// support git versions that don't recognize --no-verbose
helpCommandOutput, err = gitOutput("help", "-a")
}
if err != nil {
return false
}