From 31c43f5fb6c2d6e9d51ec02fceac52f5462e1677 Mon Sep 17 00:00:00 2001 From: layman Date: Tue, 25 Jun 2019 10:59:04 +0200 Subject: [PATCH] buildCurrentSymlinkedKernel: fix creation of package --- buildCurrentSymlinkedKernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildCurrentSymlinkedKernel.sh b/buildCurrentSymlinkedKernel.sh index f80a512..d96b9e0 100755 --- a/buildCurrentSymlinkedKernel.sh +++ b/buildCurrentSymlinkedKernel.sh @@ -60,7 +60,7 @@ if [[ "$NOCONFIG" || "$FORCE" ]] ; then SUCCESS=$? if [[ $SUCCESS == 0 ]] && [[ $CHROOTED == 1 ]] ; then ( make tarxz-pkg ) >> "buildlog-$TIMESTAMP" - elif [[ $SUCCESS == 0 ]] + elif [[ $SUCCESS == 0 ]] ; then ( make install ; make modules_install ) >> "buildlog-$TIMESTAMP" GRUBMKONFIG="$(which grub2-mkconfig 2> /dev/null)"