Fix calls to bash
All checks were successful
publish / docker (push) Successful in 14m18s

This commit is contained in:
2025-10-04 16:36:49 -05:00
parent 46f916f38e
commit cc7b5ef588

View File

@@ -30,7 +30,7 @@ RUN curl https://sh.rustup.rs -sSf | \
ENV PATH=/root/.cargo/bin:$PATH
ARG EXTRA=""
RUN declare -a ARR=($EXTRA); for name in $ARR; do rustup install $name; done
RUN ["/bin/bash", "-c", "declare -a ARR=($EXTRA); for name in $ARR; do rustup install $name; done"]
ARG TARGETS=""
RUN declare -a ARR=($TARGETS); for name in $ARR; do rustup target add $name; done
RUN ["/bin/bash", "-c", "declare -a ARR=($TARGETS); for name in $ARR; do rustup target add $name; done"]