mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
fix apt-get commands
This commit is contained in:
parent
7f3da5931a
commit
fce5bb37c0
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
echo "Need to get ruby with RVM... Unsupported for now"
|
||||
exit 1
|
||||
apt-get install build-essential openssl libreadline6 \
|
||||
apt-get -y install build-essential openssl libreadline6 \
|
||||
libreadline6-dev zlib1g zlib1g-dev libssl-dev \
|
||||
libyaml-dev libsqlite3-0 libsqlite3-dev sqlite3 \
|
||||
libxml2-dev libxslt1-dev autoconf libc6-dev \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
apt-get install libbfd-dev libunwind8-dev
|
||||
# apt-get install libbfd-dev libunwind8-dev
|
||||
pacman -Syu --noconfirm --needed libunwind binutils
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash -ex
|
||||
set -eu -o pipefail
|
||||
|
||||
apt-get install clang libbfd-dev uthash-dev \
|
||||
apt-get -y install clang libbfd-dev uthash-dev \
|
||||
libelf-dev libcapstone-dev \
|
||||
libreadline6 libreadline6-dev \
|
||||
libiberty-dev libgsl-dev
|
||||
|
|
Loading…
Reference in a new issue