1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/internal/git/git.go
Carlos Alexandro Becker d0cf457136
feat: improve verbose output (#4017)
- deprecates `--debug` in favor of `--verbose` which is clearer 
- improved some debug log outputs
- docs: update documentation to always use the `release` subcommand
(when it makes sense)
2023-05-27 00:18:39 -03:00

78 lines
1.9 KiB
Go

// Package git provides an integration with the git command
package git
import (
"bytes"
"context"
"errors"
"os/exec"
"strings"
"github.com/caarlos0/log"
)
// IsRepo returns true if current folder is a git repository.
func IsRepo(ctx context.Context) bool {
out, err := Run(ctx, "rev-parse", "--is-inside-work-tree")
return err == nil && strings.TrimSpace(out) == "true"
}
func RunWithEnv(ctx context.Context, env []string, args ...string) (string, error) {
extraArgs := []string{
"-c", "log.showSignature=false",
}
args = append(extraArgs, args...)
/* #nosec */
cmd := exec.CommandContext(ctx, "git", args...)
stdout := bytes.Buffer{}
stderr := bytes.Buffer{}
cmd.Stdout = &stdout
cmd.Stderr = &stderr
cmd.Env = append(cmd.Env, env...)
err := cmd.Run()
log.WithField("args", args).
WithField("stdout", strings.TrimSpace(stdout.String())).
WithField("stderr", strings.TrimSpace(stderr.String())).
Debug("git command result")
if err != nil {
return "", errors.New(stderr.String())
}
return stdout.String(), nil
}
// Run runs a git command and returns its output or errors.
func Run(ctx context.Context, args ...string) (string, error) {
return RunWithEnv(ctx, []string{}, args...)
}
// Clean the output.
func Clean(output string, err error) (string, error) {
output = strings.ReplaceAll(strings.Split(output, "\n")[0], "'", "")
if err != nil {
err = errors.New(strings.TrimSuffix(err.Error(), "\n"))
}
return output, err
}
// CleanAllLines returns all the non empty lines of the output, cleaned up.
func CleanAllLines(output string, err error) ([]string, error) {
var result []string
for _, line := range strings.Split(output, "\n") {
l := strings.TrimSpace(strings.ReplaceAll(line, "'", ""))
if l == "" {
continue
}
result = append(result, l)
}
if err != nil {
err = errors.New(strings.TrimSuffix(err.Error(), "\n"))
}
return result, err
}