Skip to content
Snippets Groups Projects
Commit 66fdc603 authored by Thomas Jürges's avatar Thomas Jürges
Browse files

SW-610: Correct how multiple PYTHONPATHs get added when found by find

parent 89dc623f
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
export PYTHONPATH=${PYTHONPATH}:$(find ${INSTALLDIR}/python-casacore/ -name 'site-packages' -print)
export PYTHONPATH=${PYTHONPATH}:$(find ${INSTALLDIR}/python-casacore/ -name 'site-packages' -printf "%p:")
#!/bin/bash
export PYTHONPATH=${PYTHONPATH}:$(find ${INSTALLDIR}/pybdsf/ -name 'site-packages' -print)
export PYTHONPATH=${PYTHONPATH}:$(find ${INSTALLDIR}/pybdsf/ -name 'site-packages' -printf "%p:")
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment