summaryrefslogtreecommitdiffstats
path: root/pkg/test/test.go
blob: 7bdbd4c10ff32230612bab2476592f9d85dfe9e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package test

import (
	"errors"
	"os"
	"os/exec"

	"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 {
	testPath := utils.GetProjectRoot() + "/test/repos/"
	if err := os.Chdir(testPath); err != nil {
		return err
	}
	if output, err := exec.Command("bash", filename).CombinedOutput(); err != nil {
		return errors.New(string(output))
	}
	if err := os.Chdir(testPath + "repo"); err != nil {
		return err
	}
	return nil
}