cmd/mkinitfs: fix boot-deploy error message

naming the app is more useful than some internal function/object
This commit is contained in:
Clayton Craft
2023-02-20 22:25:29 -08:00
parent 5968622f60
commit d1e150242d

View File

@@ -120,7 +120,7 @@ func main() {
if !disableBootDeploy {
if err := bootDeploy(workDir, *outDir, devinfo.UbootBoardname); err != nil {
log.Println(err)
log.Println("bootDeploy failed")
log.Println("boot-deploy failed")
retCode = 1
return
}