Add support for verbose bash execusion w/ `$DEBUG`
This commit is contained in:
parent
e56e8212f4
commit
e71a4a4c1d
|
@ -1,5 +1,10 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
|
if [[ -n "${DEBUG}" ]]
|
||||||
|
then
|
||||||
|
set -x
|
||||||
|
fi
|
||||||
|
|
||||||
set -Eeuo pipefail
|
set -Eeuo pipefail
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue