Skip to content

Commit

Permalink
update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Apr 24, 2024
1 parent 5de9521 commit 20deb1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ if [ `git status --porcelain=v1 | grep -v '^??'|wc -l ` -eq 0 ] ; then echo 'Go
echo "Uncommitted changes found";
exit 1;
} ; fi
echo "__version__ = '$VERSION'" > py/sqlutilpy/version.py
git commit -m "New version $VERSION" -v py/sqlutilpy/version.py
echo "__version__ = '$VERSION'" > src/sqlutilpy/version.py
git commit -m "New version $VERSION" -v src/sqlutilpy/version.py
git tag $VERSION
rm -rf dist/
rm -rf build/
rm -rf py/sqlutilpy.egg-info
rm -rf src/sqlutilpy.egg-info
TMPDIR=`mktemp -d`
cp -r * $TMPDIR
cd $TMPDIR
Expand Down

0 comments on commit 20deb1a

Please sign in to comment.