Commit 00363a73 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-repack: don't move file to the same name

parent 255c64d2
...@@ -265,9 +265,12 @@ __prepare_source_package() ...@@ -265,9 +265,12 @@ __prepare_source_package()
newalpkg=$PKGNAME-$VERSION.$pkgtype newalpkg=$PKGNAME-$VERSION.$pkgtype
#[ -n "$PKGNAME" ] || PKGNAME=$(basename $alpkg .$pkgtype) #[ -n "$PKGNAME" ] || PKGNAME=$(basename $alpkg .$pkgtype)
if [ "$pkgtype" = "tar" ] || [ "$pkgtype" = "tar.gz" ] || [ "$pkgtype" = "tgz" ] ; then if [ "$pkgtype" = "tar" ] || [ "$pkgtype" = "tar.gz" ] || [ "$pkgtype" = "tgz" ] ; then
mv $alpkg $newalpkg # just rename supported formats
: if [ "$alpkg" != "$newalpkg" ] ; then
mv $alpkg $newalpkg
fi
else else
# converts directly unsupported formats
newalpkg=$PKGNAME-$VERSION.tar newalpkg=$PKGNAME-$VERSION.tar
#newalpkg=$(basename $alpkg .$pkgtype).tar #newalpkg=$(basename $alpkg .$pkgtype).tar
assure_exists erc || epm ei erc || fatal assure_exists erc || epm ei erc || fatal
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment