Fix shell

This commit is contained in:
sickcodes 2021-11-13 07:44:57 +00:00
parent 31247a5f63
commit 7f7a24f1d3

View File

@ -149,17 +149,12 @@ WORKDIR /home/arch/OSX-KVM
ARG SHORTNAME= ARG SHORTNAME=
# VERSION will just set the appropriate shortname # VERSION will just set the appropriate shortname
RUN [[ "${SHORTNAME}" ]] || \ RUN if [[ ! "${SHORTNAME}" ]]; then \
if [[ $(bc <<< "${VERSION} >= 10.13") = 0 ]]; then \ { [[ $(bc <<< "${VERSION} >= 10.13") = 0 ]] && export SHORTNAME=high-sierra ; } \
export SHORTNAME=high-sierra \ || { [[ $(bc <<< "${VERSION} >= 10.14") = 0 ]] && export SHORTNAME=mojave ; } \
; elif [[ $(bc <<< "${VERSION} >= 10.14") = 0 ]]; then \ || { [[ $(bc <<< "${VERSION} >= 10.15") = 0 ]] && export SHORTNAME=catalina ; } \
export SHORTNAME=mojave \ || { [[ $(bc <<< "${VERSION} >= 11.6") = 0 ]] && export SHORTNAME=big-sur ; } \
; elif [[ $(bc <<< "${VERSION} >= 10.15") = 0 ]]; then \ || { [[ $(bc <<< "${VERSION} > 11.6") = 0 ]] && export SHORTNAME=monterey ; } \
export SHORTNAME=catalina \
; elif [[ $(bc <<< "${VERSION} >= 11.6") = 0 ]]; then \
export SHORTNAME=big-sur \
; elif [[ $(bc <<< "${VERSION} > 11.6") = 0 ]]; then \
export SHORTNAME=monterey \
; fi ; fi
RUN make RUN make