mirror of
https://github.com/Jguer/yay.git
synced 2024-11-06 17:17:22 +01:00
fix(vcs): make command error more explicit
This commit is contained in:
parent
d6cb4c50e8
commit
169d5f1f62
@ -4,6 +4,7 @@ import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"os"
|
||||
"os/exec"
|
||||
"strings"
|
||||
"sync"
|
||||
|
||||
@ -60,6 +61,11 @@ func (v *InfoStore) getCommit(url, branch string, protocols []string) string {
|
||||
cmd := v.CmdBuilder.BuildGitCmd("", "ls-remote", protocol+"://"+url, branch)
|
||||
stdout, _, err := v.Runner.Capture(cmd, 5)
|
||||
if err != nil {
|
||||
if exiterr, ok := err.(*exec.ExitError); ok && exiterr.ExitCode() == 128 {
|
||||
text.Warnln(gotext.Get("devel check for package failed: '%s' encountered an error", cmd.String()))
|
||||
return ""
|
||||
}
|
||||
|
||||
text.Warnln(err)
|
||||
return ""
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user