Commit 4252744e authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play common.sh: allow empty PKGNAME

parent d3948839
...@@ -93,6 +93,7 @@ get_first() ...@@ -93,6 +93,7 @@ get_first()
check_alternative_pkgname() check_alternative_pkgname()
{ {
[ -n "$BASEPKGNAME" ] || BASEPKGNAME="$PKGNAME" [ -n "$BASEPKGNAME" ] || BASEPKGNAME="$PKGNAME"
[ -n "$BASEPKGNAME" ] || return
# default: with first entry in $PEODUCTALT # default: with first entry in $PEODUCTALT
PKGNAME="$BASEPKGNAME-$(get_first $PRODUCTALT)" PKGNAME="$BASEPKGNAME-$(get_first $PRODUCTALT)"
...@@ -251,7 +252,7 @@ is_repacked_package() ...@@ -251,7 +252,7 @@ is_repacked_package()
{ {
local pkg="$1" local pkg="$1"
[ -n "$pkg" ] || pkg="$PKGNAME" [ -n "$pkg" ] || pkg="$PKGNAME"
[ -n "$pkg" ] || fatal "is_repacked_package() is called without package name" [ -n "$pkg" ] || return 0 #fatal "is_repacked_package() is called without package name"
# actually only for ALT # actually only for ALT
[ "$(epm print info -s)" = "alt" ] || return 0 [ "$(epm print info -s)" = "alt" ] || return 0
......
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