9 lines
211 B
Bash
9 lines
211 B
Bash
#!/bin/bash
|
|
|
|
URL="https://chromiumdash.appspot.com/fetch_releases?channel=Stable&platform=Linux&num=1&offset=0"
|
|
|
|
# Get version number from tag name
|
|
VERSION=$(curl "$URL" | jq -r '.[0].version')
|
|
|
|
echo "$VERSION"
|