ctf-tools/elfparser/install-root

21 lines
397 B
Text
Raw Normal View History

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