Skip to content

Commit d7d01ae

Browse files
committed
and again
1 parent 1d56957 commit d7d01ae

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/package-build.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,8 @@ jobs:
3939
run: |
4040
python -m build
4141
mkdir -p dist_python
42-
if [[ "$RUNNER_OS" == "Windows" ]]; then
43-
mv dist/*.whl dist/*.tar.gz dist_python/ 2>NUL || true
44-
else
45-
mv dist/*.whl dist/*.tar.gz dist_python/ 2>/dev/null || true
46-
fi
42+
mv dist/*.whl dist_python/
43+
mv dist/*.tar.gz dist_python/ || true
4744
4845
- name: Create Linux executable
4946
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)