We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a4627a + 73cbccc commit d3c3f92Copy full SHA for d3c3f92
1 file changed
admin-tools/make-dist-older.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
-PACKAGE=uncompyle6
+PACKAGE=trepan2
3
4
# FIXME put some of the below in a common routine
5
function finish {
@@ -17,8 +17,8 @@ if ! source ./setup-python-2.4.sh ; then
17
fi
18
19
cd ..
20
-source $PACKAGE/version.py
21
-echo $VERSION
+source trepan/version.py
+echo $__version__
22
23
for pyversion in $PYVERSIONS; do
24
if ! pyenv local $pyversion ; then
@@ -33,7 +33,7 @@ done
33
# Tarballs can get created from the above setup, so make sure to remove them since we want
34
# the tarball from master.
35
36
-tarball=dist/${PACKAGE}-$VERSION-tar.gz
+tarball=dist/${PACKAGE}-$__version__-tar.gz
37
if [[ -f $tarball ]]; then
38
- rm -v dist/${PACKAGE}-$VERSION-tar.gz
+ rm -v dist/${PACKAGE}-$__version__-tar.gz
39
0 commit comments