summarylogtreecommitdiffstats
path: root/get-latest.sh
blob: 2006ff516f8f8585812bb659a7926c3cfb81db1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

_get_latest() {
    local url location slug _pkgver _pkgstr

    url="https://download.dremio.com/community-server/dremio-community-LATEST.tar.gz"
    location=$(curl -sI "$url" | grep location | cut -f2 -d' ')
    slug=$(echo $location | cut -d'/' -f3)

    _pkgver=${slug%%-*}
    _pkgstr=${slug#*-}
    echo "pkgver=$_pkgver"
    echo "_pkgstr=$_pkgstr"
}

_get_latest