mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-23 17:59:06 +08:00
travis-ci: prohibit uninitialized variables in managers/
The scripts in this directory rely on certain environment variables, so fail if they are not set in order to improve the debugging experience. The vmtest/ scripts already do it. Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com>
This commit is contained in:
committed by
Andrii Nakryiko
parent
0c248143d4
commit
915f3abe94
@@ -21,7 +21,7 @@ function docker_exec() {
|
||||
docker exec $ENV_VARS -it $CONT_NAME "$@"
|
||||
}
|
||||
|
||||
set -e
|
||||
set -eu
|
||||
|
||||
source "$(dirname $0)/travis_wait.bash"
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
set -x
|
||||
set -eux
|
||||
|
||||
RELEASE="bionic"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user