Skip to content
Snippets Groups Projects
Commit 85586597 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Fix variable name

parent 87e01a7c
No related branches found
No related tags found
No related merge requests found
......@@ -16,11 +16,7 @@ if [ "${VISIBILITY}" != "public" ]; then
fi
log_info "Creating source distribution..."
run_cmd $(PREFIX)/bin/python setup.py check sdist --formats zip
if [ $? != 0 ]; then
log_error "Could not create source distribution zip file"
exit 1
fi
run_cmd ${PREFIX}/bin/python setup.py check sdist --formats zip
log_info "Uploading package to ${PYPISERVER} on behalf of ${PYPIUSER}..."
twine register --username ${PYPIUSER} --password ${PYPIPASS} dist/*.zip
......
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