1
0
Fork 0

Avoid "module name is too long" error

timestamps
dump_stack() 2018-10-07 16:34:21 +00:00
parent 7b49ba8d97
commit f8944f8f48
1 changed files with 1 additions and 2 deletions

View File

@ -133,8 +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("%s_%s-%s-%s", ka.Name, ki.DistroType,
ki.DistroRelease, ki.KernelRelease)
target := fmt.Sprintf("%d_%s", rand.Int(), ki.DistroRelease)
tmpSourcePath := tmp + "/source"