xrdp/scripts/install_cppcheck_dependencies_with_apt.sh
2022-09-03 02:05:08 +00:00

8 lines
137 B
Bash
Executable File

#!/bin/sh
set -eufx
PACKAGES="libz3-dev z3"
apt-get update
apt-get -yq --no-install-suggests --no-install-recommends install $PACKAGES