Skip to content

Commit a0b66b9

Browse files
committed
Move the installed Python module, rather than copying it.
1 parent f6d081f commit a0b66b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/gha_manylinux.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ make -j4 install
8181

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

0 commit comments

Comments
 (0)