mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-14 05:46:56 +00:00
don't use 'set -u' when sourcing ctf-tools-venv-activate
This commit is contained in:
parent
df69ea4b75
commit
b2ec338ad7
5 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e -o pipefail
|
||||
|
||||
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz | tar xz
|
||||
cd gdb-7.11.1
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -eu -o pipefail
|
||||
set -e -o pipefail
|
||||
|
||||
git clone --depth 1 https://github.com/keystone-engine/keystone.git || true
|
||||
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -e -o pipefail
|
||||
|
||||
ctf-tools-venv-activate
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -eu -o pipefail
|
||||
set -e -o pipefail
|
||||
|
||||
git clone --depth 1 https://github.com/pwndbg/pwndbg
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -eu -o pipefail
|
||||
set -e -o pipefail
|
||||
|
||||
git clone --depth 1 https://github.com/unicorn-engine/unicorn.git || true
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue