mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
9 lines
261 B
Bash
9 lines
261 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -eo pipefail
|
||
|
|
||
|
chromium_version=$(curl -s https://omahaproxy.appspot.com/linux)
|
||
|
|
||
|
curl -s https://chromium.googlesource.com/chromium/src/+/refs/tags/$chromium_version/DEPS?format=TEXT |
|
||
|
base64 -d | grep -Po "'gn_version': 'git_revision:\K[^']*"
|