2857c39d0a
(cherry picked from commit 59f8d9fe07
)
8 lines
137 B
Bash
Executable File
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
|