7 lines
225 B
Bash
Executable File
7 lines
225 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
version="$(curl -sX GET "https://api.github.com/repos/morpheus65535/bazarr/releases/latest" | jq --raw-output '.tag_name')"
|
|
version="${version#*v}"
|
|
version="${version#*release-}"
|
|
printf "%s" "${version}"
|