feat(打印日志): 添加换行符
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
xiaoqidun 2023-08-06 16:20:23 +08:00
parent 226f993c5e
commit 98c935ec35

View File

@ -39,6 +39,6 @@ func exec(done *sync.WaitGroup, distro string) {
cmd.Stderr = os.Stderr
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
if err := cmd.Run(); err != nil {
log.Printf("%v cmd run err: %v", distro, err)
log.Printf("%v cmd run err: %v\n", distro, err)
}
}