Fixed deploy scripts for Travis CI.

This commit is contained in:
Gonzalo Exequiel Pedone 2020-11-18 20:11:19 -03:00
parent 217d7ae25e
commit 3088f86d46
No known key found for this signature in database
GPG key ID: B8B09E63E9B85BAF

View file

@ -50,6 +50,7 @@ EOF
fi
cat << EOF >> ${DEPLOYSCRIPT}
export PYTHONPATH="\${PWD}/ports/deploy/DeployTools"
python ports/deploy/deploy.py
EOF
chmod +x ${DEPLOYSCRIPT}
@ -59,5 +60,6 @@ EOF
sudo umount root.x86_64/$HOME
sudo umount root.x86_64
elif [ "${TRAVIS_OS_NAME}" = osx ]; then
${EXEC} python3 ports/deploy/deploy.py
export PYTHONPATH="${PWD}/ports/deploy/DeployTools"
python3 ports/deploy/deploy.py
fi