From 7f7a24f1d3ea03efc619a0a2dd1409c9cf432397 Mon Sep 17 00:00:00 2001 From: sickcodes Date: Sat, 13 Nov 2021 07:44:57 +0000 Subject: [PATCH] Fix shell --- Dockerfile | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index b2ba2eb..1faade7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -149,17 +149,12 @@ WORKDIR /home/arch/OSX-KVM ARG SHORTNAME= # VERSION will just set the appropriate shortname -RUN [[ "${SHORTNAME}" ]] || \ - if [[ $(bc <<< "${VERSION} >= 10.13") = 0 ]]; then \ - export SHORTNAME=high-sierra \ - ; elif [[ $(bc <<< "${VERSION} >= 10.14") = 0 ]]; then \ - export SHORTNAME=mojave \ - ; elif [[ $(bc <<< "${VERSION} >= 10.15") = 0 ]]; then \ - export SHORTNAME=catalina \ - ; elif [[ $(bc <<< "${VERSION} >= 11.6") = 0 ]]; then \ - export SHORTNAME=big-sur \ - ; elif [[ $(bc <<< "${VERSION} > 11.6") = 0 ]]; then \ - export SHORTNAME=monterey \ +RUN if [[ ! "${SHORTNAME}" ]]; then \ + { [[ $(bc <<< "${VERSION} >= 10.13") = 0 ]] && export SHORTNAME=high-sierra ; } \ + || { [[ $(bc <<< "${VERSION} >= 10.14") = 0 ]] && export SHORTNAME=mojave ; } \ + || { [[ $(bc <<< "${VERSION} >= 10.15") = 0 ]] && export SHORTNAME=catalina ; } \ + || { [[ $(bc <<< "${VERSION} >= 11.6") = 0 ]] && export SHORTNAME=big-sur ; } \ + || { [[ $(bc <<< "${VERSION} > 11.6") = 0 ]] && export SHORTNAME=monterey ; } \ ; fi RUN make