thanos/tailchaser

View on GitHub
publish.sh

Summary

Maintainability
Test Coverage
#!/bin/bash


VERSION=$(python -c "import tailchaser; print tailchaser.__version__")

echo "creating tag $VERSION"
git tag $VERSION

echo "pushing tag"
git push ${REMOTE:-origin} $VERSION

if [ -f MANIFEST ]; then
    echo "removing manifest file"
    rm MANIFEST
fi

echo "uploading package."
python setup.py sdist upload