From 2f7659ce3fe2c9b1372b0339bd521863052e2e38 Mon Sep 17 00:00:00 2001 From: Jeremy Wright Date: Tue, 16 Jul 2024 10:51:17 -0400 Subject: [PATCH] Removed stray slash --- .github/workflows/build-vtk.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-vtk.yml b/.github/workflows/build-vtk.yml index 56a2484..6bcbf55 100644 --- a/.github/workflows/build-vtk.yml +++ b/.github/workflows/build-vtk.yml @@ -159,7 +159,7 @@ jobs: mv ./wheel_build/*.dist-info ./wheel_build/cadquery_vtk-9.2.6.dist-info # Rename the dist-info file to the new name wheel pack ./wheel_build/; # Create a new wheel file with the new name by prepending "cadquery_" to the name rm ./vtk/build/dist/*.whl # Remove the old wheel file - mv /*.whl ./vtk/build/dist/ # Move the new wheel file to the dist directory + mv *.whl ./vtk/build/dist/ # Move the new wheel file to the dist directory # new_wheel_file=$(ls wheel_build/*.whl | xargs -n 1 basename) # mv ./wheel_build/cadquery_${wheel_file} ./vtk/build/dist/ # Move the new wheel file to the dist directory # mv vtk/build/dist/vtk-9.2.6.dev0-cp${{ env.PYTHON_VERSION_NO_DOTS }}-cp${{ env.PYTHON_VERSION_NO_DOTS }}-${{ env.WHEEL_OS_VERSION }}.whl vtk/build/dist/cadquery-vtk-9.2.6-cp${{ env.PYTHON_VERSION_NO_DOTS }}-cp${{ env.PYTHON_VERSION_NO_DOTS }}-${{ env.WHEEL_OS_VERSION }}.whl