This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Quick and dirty Chromium updater till Chromatic is updated. | |
# Beware there is no safety net, use at your own risk! | |
# Where is Chromium installed? | |
INSTALLFOLDER='/Applications/Internet'; | |
RELEASE_TYPE="snapshots" | |
# Get current installed version | |
CURRENT=$(xpath $INSTALLFOLDER/Chromium.app/Contents/Info.plist '/plist/dict/key[. = "SCMRevision"]/following-sibling::string[1]/text()' 2> /dev/null); |