From 273dc189ea8f5fc85b82b96db7d40d89f42d405d Mon Sep 17 00:00:00 2001 From: Mar Alegre Date: Mon, 12 Oct 2020 21:05:41 -0400 Subject: [PATCH] added set -e to pdm-launch script --- bin/pdm-launch | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/pdm-launch b/bin/pdm-launch index d217539..b2e1db9 100755 --- a/bin/pdm-launch +++ b/bin/pdm-launch @@ -37,6 +37,9 @@ else name=$image fi +# Main +set -e + if [[ $FLAGS_config -eq $FLAGS_TRUE ]]; then echo "Getting deploy options from image metadata label \"$FLAGS_label\" ..." deployopts=$(podman image inspect -f "{{ .Config.Labels.${FLAGS_label} }}" $image)