ctf-tools/gdb/install-root

21 lines
390 B
Text
Raw Normal View History

2015-05-08 02:18:08 +00:00
#!/bin/bash
set -eu -o pipefail
2015-05-08 02:18:08 +00:00
case "$DISTRI" in
"ubuntu")
;& # fallthrough
"debian")
apt-get -y install texinfo
;;
"archlinux")
echo "archlinux is currently not supported!"
echo "Update install-root and do a pull-request ;)"
exit 1
;;
*)
echo "Unsupported distribution: ''"
exit 1
;;
esac