
Untitled
By: a guest on
Aug 1st, 2011 | syntax:
None | size: 0.46 KB | hits: 94 | expires: Never
# trick re-determining the build revision and, or entertain the hidden
# makepkg option --forcever, huh
if [ -z "$FORCE_VER" ]; then
msg "Determining latest build revision..."
newpkgver="$(curl -s http://commondatastorage.googleapis.com/chromium-browser-continuous/Linux LAST_CHANGE)"
if [ -n "$newpkgver" -a "$newpkgver" != "$pkgver" ]; then
msg2 "Version found: %s" "$newpkgver"
FORCE_VER="$newpkgver"
else
FORCE_VER="$pkgver"
fi
fi