From a28e184552e82e37ff4de99e0ac729116ccafbd2 Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Tue, 30 Apr 2024 15:00:01 +0200 Subject: [PATCH] dpkg was not installed, flips table --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index ebbf0b1..abc3a35 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -4,7 +4,7 @@ necessary_packages=("pdflatex") for package in "${necessary_packages}"; do - if ! [dpkg -l "${package}" > /dev/null &]; then + if ! [dpkg -l "${package}" > /dev/null]; then echo "Error: ${package} is not installed." exit 1 fi