Skip to content

Commit

Permalink
Move the installed Python module, rather than copying it.
Browse files Browse the repository at this point in the history
  • Loading branch information
bluescarni committed Feb 26, 2023
1 parent f6d081f commit a0b66b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/gha_manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ make -j4 install

# Making the wheel and installing it
cd wheel
# Copy the installed cascade.py files into the current dir.
cp -r `/opt/python/${PYTHON_DIR}/bin/python -c 'import site; print(site.getsitepackages()[0])'`/cascade ./
# Move the installed cascade.py files into the current dir.
mv `/opt/python/${PYTHON_DIR}/bin/python -c 'import site; print(site.getsitepackages()[0])'`/cascade ./
# Create the wheel and repair it.
# NOTE: this is temporary because some libraries in the docker
# image are installed in lib64 rather than lib and they are
Expand Down

0 comments on commit a0b66b9

Please sign in to comment.