xrdp/scripts/install_cppcheck_dependencies_with_apt.sh

8 lines
137 B
Bash
Raw Normal View History

2020-11-17 08:49:39 +03:00
#!/bin/sh
set -eufx
PACKAGES="libz3-dev z3"
2022-09-03 03:50:56 +03:00
apt-get update
2020-11-17 08:49:39 +03:00
apt-get -yq --no-install-suggests --no-install-recommends install $PACKAGES