Commit 6264594f authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm play min: add direct URL for specific version to avoid GitHub API

parent d0725e5b
......@@ -12,6 +12,10 @@ arch="$(epm print info --debian-arch)"
file="min-${VERSION}-${arch}.deb"
PKGURL="$(eget --list --latest "https://github.com/minbrowser/min/releases" "$file")"
if [ "$VERSION" = "*" ] ; then
PKGURL="$(eget --list --latest "https://github.com/minbrowser/min/releases" "$file")"
else
PKGURL="https://github.com/minbrowser/min/releases/download/v${VERSION}/${file}"
fi
install_pkgurl
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