main: add call to boot-deploy after archives are generated

This commit is contained in:
Clayton Craft
2021-08-17 23:10:56 -07:00
parent 5256e4848a
commit 666abc323e

View File

@@ -72,6 +72,11 @@ func main() {
log.Fatal(err)
}
// Final processing of initramfs / kernel is done by boot-deploy
if err := bootDeploy(workDir, outDir); err != nil {
log.Fatal(err)
}
}
func bootDeploy(workDir string, outDir string) error {