mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
10 lines
165 B
Plaintext
10 lines
165 B
Plaintext
url=https://archive.mozilla.org/pub/thunderbird/releases/
|
|
|
|
getver_thunderbird() {
|
|
fetch \
|
|
| grep -Eo releases/[0-9.]+/ \
|
|
| cut -d / -f2 \
|
|
| sort -V \
|
|
| uniq
|
|
}
|