зеркало из https://github.com/mislav/hub.git
Support git versions that don't recognize --no-verbose
This commit is contained in:
Родитель
9bb5ffa9e7
Коммит
7642e5b973
|
@ -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
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче