File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,8 @@ elif [ "$CI_OS_NAME" != "macos" ]; then
3131fi
3232
3333if [ -n " $PIP_PACKAGES " ]; then
34- if [ " $CI_OS_NAME " == " macos" ]; then
35- # shellcheck disable=SC2086
36- IN_GETOPT_BIN=" $( brew --prefix gnu-getopt) /bin/getopt" ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
37- else
38- # shellcheck disable=SC2086
39- ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
40- fi
34+ # shellcheck disable=SC2086
35+ ${CI_RETRY_EXE} pip3 install --user $PIP_PACKAGES
4136fi
4237
4338if [[ ${USE_MEMORY_SANITIZER} == " true" ]]; then
Original file line number Diff line number Diff line change 5454 mkdir -p " ${PREVIOUS_RELEASES_DIR} "
5555fi
5656
57+ if [ " $CI_OS_NAME " == " macos" ]; then
58+ IN_GETOPT_BIN=" $( brew --prefix gnu-getopt) /bin/getopt"
59+ export IN_GETOPT_BIN
60+ fi
61+
5762CI_EXEC () {
5863 $CI_EXEC_CMD_PREFIX bash -c " export PATH=${BINS_SCRATCH_DIR} :${BASE_ROOT_DIR} /ci/retry:\$ PATH && cd \" ${BASE_ROOT_DIR} \" && $* "
5964}
You can’t perform that action at this time.
0 commit comments