We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7b9d92 commit 770028cCopy full SHA for 770028c
pwntools/install-root-ubuntu
@@ -1,6 +1,11 @@
1
#!/bin/bash -ex
2
3
-apt-get -y install software-properties-common
4
-apt-add-repository -y ppa:pwntools/binutils
5
-apt-get update
6
-apt-get -y install binutils-.*-linux-gnu libffi-dev libssl-dev
+apt-get install -y python2.7 python-pip python-dev git libssl-dev libffi-dev build-essential
+
+if [[ $(lsb_release -rs | sed 's/\(..\)\.../\1/') -lt 16 ]]; then
+ echo "using pwntools binutils ppa for pre-xenial ubuntu"
7
+ apt-get -y install software-properties-common
8
+ apt-add-repository -y ppa:pwntools/binutils
9
+ apt-get update
10
+ apt-get -y install binutils-.*-linux-gnu
11
+fi
0 commit comments