Commit 0770fa0e authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.64.52

parent 06e31737
...@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR ...@@ -34,7 +34,7 @@ SHAREDIR=$PROGDIR
# will replaced with /etc/eepm during install # will replaced with /etc/eepm during install
CONFIGDIR=$PROGDIR/../etc CONFIGDIR=$PROGDIR/../etc
EPMVERSION="3.64.51" EPMVERSION="3.64.52"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" EPMMODE="package"
...@@ -1107,6 +1107,10 @@ get_package_type() ...@@ -1107,6 +1107,10 @@ get_package_type()
echo "AppImage" echo "AppImage"
return return
;; ;;
*.pkg.tar.*)
echo "pkg.tar.$(echo "$1" | sed -e 's|.*\.pkg\.tar\.||')"
return
;;
*) *)
if [ -r "$1" ] && file -L "$1" | grep -q " ELF " ; then if [ -r "$1" ] && file -L "$1" | grep -q " ELF " ; then
echo "ELF" echo "ELF"
......
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