ctf-tools/pathgrind/install-root

18 lines
367 B
Bash
Executable file

#!/bin/bash
set -eu -o pipefail
case "$DISTRI" in
"debian")
apt-get -y install libc6-dev-i386 libc6-dev
;;
"archlinux")
echo "archlinux is currently not supported!"
echo "Update install-root and do a pull-request ;)"
exit 1
;;
*)
echo "Unsupported distribution: ''"
exit 1
;;
esac