don't use 'set -u' when sourcing ctf-tools-venv-activate

This commit is contained in:
Michael Rodler 2016-10-13 11:54:06 +02:00 committed by Yan
parent df69ea4b75
commit b2ec338ad7
5 changed files with 5 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -1,4 +1,5 @@
#!/bin/bash
set -e -o pipefail
ctf-tools-venv-activate

View file

@ -1,5 +1,5 @@
#!/bin/bash
set -eu -o pipefail
set -e -o pipefail
git clone --depth 1 https://github.com/pwndbg/pwndbg

View file

@ -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