mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
584d6b241c
Fix various errors reported by goreportcard
32 lines
738 B
Go
32 lines
738 B
Go
package test
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
"os/exec"
|
|
"path/filepath"
|
|
|
|
"github.com/jesseduffield/lazygit/pkg/utils"
|
|
)
|
|
|
|
// GenerateRepo generates a repo from test/repos and changes the directory to be
|
|
// inside the newly made repo
|
|
func GenerateRepo(filename string) error {
|
|
reposDir := "/test/repos/"
|
|
testPath := utils.GetProjectRoot() + reposDir
|
|
|
|
// workaround for debian packaging
|
|
if _, err := os.Stat(testPath); os.IsNotExist(err) {
|
|
cwd, _ := os.Getwd()
|
|
testPath = filepath.Dir(filepath.Dir(cwd)) + reposDir
|
|
}
|
|
if err := os.Chdir(testPath); err != nil {
|
|
return err
|
|
}
|
|
if output, err := exec.Command("bash", filename).CombinedOutput(); err != nil {
|
|
return errors.New(string(output))
|
|
}
|
|
|
|
return os.Chdir(testPath + "repo")
|
|
}
|