Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
Василий Толстов 2023-09-30 01:00:13 +03:00
parent 51bc1b6588
commit 78ee2d8432
1 changed files with 3 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"context" "context"
"encoding/json" "encoding/json"
"fmt" "fmt"
"io"
"net/http" "net/http"
"os" "os"
"path/filepath" "path/filepath"
@ -256,7 +257,8 @@ func giteaPullRequest(ctx context.Context, cfg *Config, mods map[string]modules.
return err return err
} }
if rsp.StatusCode != http.StatusOK { if rsp.StatusCode != http.StatusOK {
return fmt.Errorf("unknown error") buf, _ = io.ReadAll(rsp.Body)
return fmt.Errorf("unknown error: %s", buf)
} }
} }