dpkg was not installed, flips table

This commit is contained in:
2024-04-30 15:00:01 +02:00
parent 9c83a5bb32
commit a28e184552

View File

@@ -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