8 lines
255 B
Bash
8 lines
255 B
Bash
|
#!/bin/bash
|
||
|
# get latest upstream libyang version from github
|
||
|
|
||
|
RLS_URL=https://api.github.com/repos/CESNET/libyang/releases
|
||
|
VERSION=$(curl -s $RLS_URL | grep tag_name | cut -d '"' -f 4 | sort --version-sort | tail -n 1)
|
||
|
VERSION=${VERSION#v}
|
||
|
echo $VERSION
|