X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=build-image.sh;h=b065201f7904604a34b519559862fed0c59b8013;hb=535de2bb6ed79a7e5519bf63dccdf953400f7b7d;hp=15b2d7249632703bf73aef4565a6cd9a23793c27;hpb=d073673664901502fa004021cf25684e601eb131;p=mbt-docker.git diff --git a/build-image.sh b/build-image.sh index 15b2d72..b065201 100755 --- a/build-image.sh +++ b/build-image.sh @@ -43,9 +43,9 @@ while getopts ":b:p:ch" option; do case "${option}" in b) name=${OPTARG} - if [[ ${name} == "all" ]]; then + if [ ${name} = "all" ]; then build_all - elif [[ -z "${images##*$name*}" ]]; then + elif [ -z "${images##*$name*}" ]; then make NAME=${name} else echo "Error: Unknown image name as option argument '${OPTARG}'" >&2; @@ -54,9 +54,9 @@ while getopts ":b:p:ch" option; do ;; p) repository=${OPTARG} - if [[ ${repository} == "all" ]]; then + if [ ${repository} = "all" ]; then push_all - elif [[ -z "${repositories##*$repository*}" ]]; then + elif [ -z "${repositories##*$repository*}" ]; then make docker-push-registry NAME=${repository} else echo "Error: Unknown repository name as option argument '${OPTARG}'" >&2;