Skip to content
Snippets Groups Projects
Commit 4155bb62 authored by Jan-Tarek Butt's avatar Jan-Tarek Butt
Browse files

fix unzip depence check

parent 6dee9d74
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ if ! dpkg -s gawk > /dev/null; then
fi
echo "Detected gawk..."
echo "Checking for unzip..."
if dpkg -s unzip > /dev/null; then
if ! dpkg -s unzip > /dev/null; then
echo "unzip is not installed"
exit 1
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment