mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-14 01:37:06 +00:00
c6d1f24c57
differentiate between ubuntu versions
13 lines
187 B
Bash
Executable file
13 lines
187 B
Bash
Executable file
#!/bin/bash -ex
|
|
set -eu -o pipefail
|
|
|
|
apt-get -y build-dep qemu
|
|
|
|
case "$(lsb_release -cs)" in
|
|
xenial)
|
|
apt-get -y install bison libtool-bin
|
|
;;
|
|
*)
|
|
apt-get -y install bison
|
|
;;
|
|
esac
|