Skip to content
Snippets Groups Projects
Commit fe171d8d authored by Jean-Baptiste Keck's avatar Jean-Baptiste Keck
Browse files

fixed pythonpath

parent 12a324e3
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -23,7 +23,5 @@ INSTALL_FOLDER="$2"
mkdir -p $INSTALL_FOLDER
cd $BUILD_FOLDER
make install
export PYTHONPATH=$INSTALL_FOLDER
python -c 'import hysop; print hysop'
exit 0
......@@ -6,12 +6,12 @@ if [ $# -ne 1 ]; then
exit 1
fi
if [ ! -d "$0" ]; then
if [ ! -d "$1" ]; then
echo "Folder {} does not exist."
exit 1
fi
export PYTHONPATH=$0
export PYTHONPATH="$1/lib/python2.7/site-packages/hysop"
python -c 'import hysop; print hysop'
python './hysop/operator/test_transpose.py'
exit 0
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