1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-03 01:45:47 +00:00

Fix git 2.11 error when checking IsEmpty (#27393)

Fix #27389
This commit is contained in:
wxiaoguang 2023-10-02 22:05:21 +08:00 committed by GitHub
parent 624c0ba920
commit caef9f9503
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -86,7 +86,8 @@ func (repo *Repository) IsEmpty() (bool, error) {
Stdout: &output, Stdout: &output,
Stderr: &errbuf, Stderr: &errbuf,
}); err != nil { }); err != nil {
if err.Error() == "exit status 1" && errbuf.String() == "" { if (err.Error() == "exit status 1" || err.Error() == "exit status 129") && strings.TrimSpace(errbuf.String()) == "" {
// git 2.11 exits with 129 if the repo is empty
return true, nil return true, nil
} }
return true, fmt.Errorf("check empty: %w - %s", err, errbuf.String()) return true, fmt.Errorf("check empty: %w - %s", err, errbuf.String())