From 3bf2c5c8b6b04d26d6d8752e520f053f7e4bd0a1 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Tue, 1 Mar 2022 10:07:26 -0500 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0f2ff4a9..04dbf81a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -156,7 +156,7 @@ jobs: echo "PYTHON=${PYTHON_INSTALL_PATH}/bin/python3" >> $GITHUB_ENV export date=gdate export realpath=grealpath - echo 'PIP_ARGS=( "--no-binary" ":all:" )' >> $GITHUB_ENV + echo 'PIP_ARGS="--no-binary :all:"' >> $GITHUB_ENV elif [[ "${RUNNER_OS}" == "Linux" ]]; then MAKE=make MAKEOPT="-j$(nproc)" @@ -406,7 +406,7 @@ jobs: - name: Install pip requirements run: | set +e - "${PYTHON}" -m pip install --upgrade -r requirements.txt "${PIP_ARGS[@]}" + "${PYTHON}" -m pip install --upgrade -r requirements.txt ${PIP_ARGS} "${PYTHON}" -m pip list - name: Build GAM with PyInstaller