Skip to content

Commit

Permalink
tolerate undefined env vars in teardown
Browse files Browse the repository at this point in the history
  • Loading branch information
bparees committed Jan 17, 2020
1 parent ca65547 commit 9d74531
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
export PATH=$PATH:/tmp/shared/bin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
# This is for running the gcloud commands
mock-nss.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1856,7 +1856,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
set +e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
set +e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
set +e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
set +e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function teardown() {
set +e
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
function queue() {
local TARGET="${1}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ objects:
- -c
- |
#!/bin/bash
set -euo pipefail
set -eo pipefail
# teardown is collecting debug data and deleting all used resources
function teardown() {
Expand Down

0 comments on commit 9d74531

Please sign in to comment.