refactor: rename variable to derivation to be more descriptive

This commit is contained in:
technofab 2025-05-04 16:21:51 +02:00
parent 6e17ec8838
commit 4afa8a7957

View file

@ -47,11 +47,11 @@ type TestResult struct {
type Results map[string][]TestResult type Results map[string][]TestResult
func buildAndParse(variable string) (any, error) { func buildAndParse(derivation string) (any, error) {
cmd := exec.Command( cmd := exec.Command(
"nix", "nix",
"build", "build",
variable+"^*", derivation+"^*",
"--print-out-paths", "--print-out-paths",
"--no-link", "--no-link",
) )