Let's not put in nulls.

Change-Id: I4d970bf20ed5e178ecf6c35af0ec1fd86c4ccaf4
This commit is contained in:
Monty Taylor 2012-06-28 08:50:46 -07:00
parent 40bed1816e
commit 36fb7bd077

View File

@ -62,9 +62,8 @@ if [ -f setup.py ] ; then
echo mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
mv "$tarball" "dist/$(basename $tarball .tar.gz)${SEPARATOR}${snapshotversion}.tar.gz"
else
projectname=`tar --wildcards -O -z -xf $tarball *PKG-INFO 2>/dev/null | grep Name: | awk '{print $2}'`
echo mv "$tarball" "dist/${projectname}-${snapshotversion}.tar.gz"
mv "$tarball" "dist/${projectname}-${snapshotversion}.tar.gz"
echo mv "$tarball" "dist/${PROJECT}-${snapshotversion}.tar.gz"
mv "$tarball" "dist/${PROJECT}-${snapshotversion}.tar.gz"
fi
fi