Commit 6e2d4e6a authored by Vitaly Lipatov's avatar Vitaly Lipatov

commit packed 3.56.1

parent 0a6a233e
...@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR ...@@ -33,7 +33,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.56.0" EPMVERSION="3.56.1"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" EPMMODE="package"
...@@ -2849,7 +2849,7 @@ __download_pkg_urls() ...@@ -2849,7 +2849,7 @@ __download_pkg_urls()
[ -z "$pkg_urls" ] && return [ -z "$pkg_urls" ] && return
for url in $pkg_urls ; do for url in $pkg_urls ; do
local tmppkg local tmppkg
tmppkg="$(mktemp -d)" || fatal tmppkg="$(mktemp -d --tmpdir=$BIGTMPDIR)" || fatal
docmd chmod $verbose a+rX $tmppkg docmd chmod $verbose a+rX $tmppkg
showcmd cd $tmppkg showcmd cd $tmppkg
cd $tmppkg || fatal cd $tmppkg || fatal
...@@ -14074,6 +14074,7 @@ Options: ...@@ -14074,6 +14074,7 @@ Options:
--get-response URL - get response with all headers (ever if HEAD is not acceptable) --get-response URL - get response with all headers (ever if HEAD is not acceptable)
--get-filename URL - print filename for the URL (via Content-Disposition if applicable) --get-filename URL - print filename for the URL (via Content-Disposition if applicable)
--get-real-url URL - print URL after all redirects --get-real-url URL - print URL after all redirects
--get-ipfs-cid URL - print CID for URL (after all redirects)
Supported URLs: Supported URLs:
ftp:// http:// https:// file:/ ipfs:// ftp:// http:// https:// file:/ ipfs://
...@@ -14323,12 +14324,12 @@ ipfs_mode="$EGET_IPFS" ...@@ -14323,12 +14324,12 @@ ipfs_mode="$EGET_IPFS"
[ -z "$ipfs_mode" ] && [ -n "$EGET_IPFS_DB" ] && ipfs_mode="auto" [ -z "$ipfs_mode" ] && [ -n "$EGET_IPFS_DB" ] && ipfs_mode="auto"
if [ -n "$LISTONLY$CHECKURL" ] ; then if [ -n "$LISTONLY$CHECKURL" ] ; then
ipfs_mode="disabled" ipfs_mode=""
EGET_IPFS_DB='' EGET_IPFS_DB=''
fi fi
if [ "$ipfs_mode" != "disabled" ] && [ -n "$EGET_IPFS_DB" ] ; then if [ -n "$ipfs_mode" ] && [ -n "$EGET_IPFS_DB" ] ; then
ddb="$(dirname "$EGET_IPFS_DB")" ddb="$(dirname "$EGET_IPFS_DB")"
if [ -d "$ddb" ] ; then if [ -d "$ddb" ] ; then
info "Using eget IPFS db $EGET_IPFS_DB" info "Using eget IPFS db $EGET_IPFS_DB"
...@@ -14345,7 +14346,7 @@ if is_ipfsurl "$1" && [ -z "$ipfs_mode" ] || [ "$ipfs_mode" = "auto" ] ; then ...@@ -14345,7 +14346,7 @@ if is_ipfsurl "$1" && [ -z "$ipfs_mode" ] || [ "$ipfs_mode" = "auto" ] ; then
select_ipfs_mode select_ipfs_mode
info "Auto selected IPFS mode: $ipfs_mode" info "Auto selected IPFS mode: $ipfs_mode"
else else
[ -n "$ipfs_mode" ] && [ "$ipfs_mode" != "disabled" ] && info "IPFS mode: $ipfs_mode" [ -n "$ipfs_mode" ] && info "IPFS mode: $ipfs_mode"
fi fi
IPFS_CMD='' IPFS_CMD=''
...@@ -14769,7 +14770,7 @@ url_get_filename() ...@@ -14769,7 +14770,7 @@ url_get_filename()
fi fi
if [ "$ipfs_mode" != "disabled" ] && [ -n "$EGET_IPFS_DB" ] && ! is_ipfsurl "$1" ; then if [ -n "$ipfs_mode" ] && [ -n "$EGET_IPFS_DB" ] && ! is_ipfsurl "$1" ; then
download_to_ipfs() download_to_ipfs()
{ {
......
...@@ -33,7 +33,7 @@ SHAREDIR=$PROGDIR ...@@ -33,7 +33,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.56.0" EPMVERSION="3.56.1"
# package, single (file), pipe, git # package, single (file), pipe, git
EPMMODE="package" EPMMODE="package"
......
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