ctf-tools/stegdetect/install-root

18 lines
354 B
Bash
Executable file

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