diff --git a/modules/baselayout-branding.ezmod b/modules/baselayout-branding.ezmod index d645602..4948999 100644 --- a/modules/baselayout-branding.ezmod +++ b/modules/baselayout-branding.ezmod @@ -9,6 +9,7 @@ ezsync_precommit() { printInfo "Enabling custom BaseLayout branding..." find ${PORTAGESDIR}/${PORTAGE_BUILD[0]}/sys-apps/baselayout -type f -name \*.ebuild | while read EBUILD; do sed -i "s/echo \"Gentoo Base System release/echo \"${CUSTOM_BRANDING}/g" ${EBUILD} || return 1 + run "ebuild ${EBUILD} manifest" || return 1 done return 0 } diff --git a/modules/openrc-branding.ezmod b/modules/openrc-branding.ezmod index 4415458..7b21264 100644 --- a/modules/openrc-branding.ezmod +++ b/modules/openrc-branding.ezmod @@ -9,6 +9,7 @@ ezsync_precommit() { printInfo "Enabling custom OpenRC branding..." find ${PORTAGESDIR}/${PORTAGE_BUILD[0]}/sys-apps/openrc -type f -name \*.ebuild | while read EBUILD; do sed -i "s/BRANDING=\"Gentoo \${brand}\"/BRANDING=\"${CUSTOM_BRANDING} \${brand}\"/g" ${EBUILD} || return 1 + run "ebuild ${EBUILD} manifest" || return 1 done return 0 }