Browse Source

fix unbound variable

master
crims0n 5 years ago
parent
commit
7905093f50
  1. 4
      linux-live/minioslib

4
linux-live/minioslib

@ -16,11 +16,11 @@ function common_variables() {
OUTPUT="/dev/stdout"
#
set +e
set +u
if [ ! -z $container ]; then
container = ""
fi
set -e
set -u
if [ -f /.dockerenv ] || [ "$container" = "podman" ]; then
OUTPUT="/dev/stdout"
fi

Loading…
Cancel
Save