Fix: Must return explicit zero to prevent script exit
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
061da331ee
commit
4496db0412
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ function hash_hostname() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function log() {
|
function log() {
|
||||||
[ $NO_LOG -eq 0 ] || return
|
[ $NO_LOG -eq 0 ] || return 0
|
||||||
echo "[$(date +%H:%M:%S)][docker-credential-vault] $@" >&2
|
echo "[$(date +%H:%M:%S)][docker-credential-vault] $@" >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue