1
0
Fork 0

Use kernel release instead of distro release for file name

timestamps
dump_stack() 2018-10-07 17:25:27 +00:00
parent e223734d24
commit 4d6caef219
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ func dockerCommand(container, workdir, timeout, command string) *exec.Cmd {
}
func build(tmp string, ka artifact, ki kernelInfo) (outPath, output string, err error) {
target := fmt.Sprintf("%d_%s", rand.Int(), ki.DistroRelease)
target := fmt.Sprintf("%d_%s", rand.Int(), ki.KernelRelease)
tmpSourcePath := tmp + "/source"