Skip to content

Commit 375ee12

Browse files
authored
Remove pointless && in wheel-builder.yml (#11504)
1 parent c0d0779 commit 375ee12

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/wheel-builder.yml

+6-3
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ jobs:
135135
source .venv/bin/activate
136136
OPENSSL_DIR="/opt/pyca/cryptography/openssl" \
137137
OPENSSL_STATIC=1 \
138-
.venv/bin/python -m pip wheel -v --no-deps $PY_LIMITED_API cryptograph*.tar.gz -w dist/ && mv dist/cryptography*.whl tmpwheelhouse
138+
.venv/bin/python -m pip wheel -v --no-deps $PY_LIMITED_API cryptograph*.tar.gz -w dist/
139+
mv dist/cryptography*.whl tmpwheelhouse
139140
env:
140141
RUSTUP_HOME: /root/.rustup
141142
- run: auditwheel repair --plat ${{ matrix.MANYLINUX.NAME }} tmpwheelhouse/cryptograph*.whl -w wheelhouse/
@@ -255,7 +256,8 @@ jobs:
255256
source venv/bin/activate
256257
OPENSSL_DIR="$(readlink -f ../openssl-macos-universal2/)" \
257258
OPENSSL_STATIC=1 \
258-
venv/bin/python -m pip wheel -v --no-deps $PY_LIMITED_API cryptograph*.tar.gz -w dist/ && mv dist/cryptography*.whl wheelhouse
259+
venv/bin/python -m pip wheel -v --no-deps $PY_LIMITED_API cryptograph*.tar.gz -w dist/
260+
mv dist/cryptography*.whl wheelhouse
259261
env:
260262
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.PYTHON.DEPLOYMENT_TARGET }}
261263
ARCHFLAGS: ${{ matrix.PYTHON.ARCHFLAGS }}
@@ -344,7 +346,8 @@ jobs:
344346
PY_LIMITED_API="--config-settings=build-args=--features=pyo3/abi3-${{ matrix.PYTHON.ABI_VERSION }} --no-build-isolation"
345347
fi
346348
347-
python -m pip wheel -v --no-deps cryptography*.tar.gz $PY_LIMITED_API -w dist/ && mv dist/cryptography*.whl wheelhouse/
349+
python -m pip wheel -v --no-deps cryptography*.tar.gz $PY_LIMITED_API -w dist/
350+
mv dist/cryptography*.whl wheelhouse/
348351
shell: bash
349352
- run: pip install -f wheelhouse --no-index cryptography
350353
- name: Print the OpenSSL we built and linked against

0 commit comments

Comments
 (0)