Fix apt-phased-updates

Missing then

Change-Id: Ifb446e44a788583c6ab7b93747927b921932aba6
This commit is contained in:
Dr. Jens Harbott 2022-05-04 17:56:39 +02:00
parent 2b87c833e5
commit a694b41c74
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ set -o pipefail
# NOTE(frickler): Our images builds always install the newest updates,
# so we need this in order to avoid conflicts
if [ ${DIB_RELEASE} = jammy ];
if [ ${DIB_RELEASE} = jammy ]; then
if [ -d "$TARGET_ROOT/etc/apt/apt.conf.d" ]; then
echo "APT::Get::Always-Include-Phased-Updates \"true\";" | sudo tee $TARGET_ROOT/etc/apt/apt.conf.d/95phased-updates
fi