Tempoary (!!!) workaround for incorrect key combination description in frontend
This workaround fixes the incorrect string while preserving translations and the 1.0.0 string freeze.
Remember to revert this commit and fix the string in binds.cpp after the 1.0.0 release!
#!/bin/bash# Downloads and install a .dmg from a URL## Usage# $ dmg_pkg_install [url]## Adopted from https://gist.github.com/afgomez/4172338if [[ $# -lt 1 ]]; then echo "Usage: dmg_pkg_install [url]" exit 1fiurl=$*# Generate a random file nametmp_file=/tmp/`openssl rand -base64 10 | tr -dc '[:alnum:]'`.dmg# Download fileecho "Downloading $url..."curl -# -L -o $tmp_file $urlecho "Mounting image..."volume=`hdiutil mount $tmp_file | tail -n1 | perl -nle '/(\/Volumes\/[^ ]+)/; print $1'`# Locate .pkgapp_pkg=`find $volume/. -name *.pkg -maxdepth 1 -print0`echo "Install pkg..."installer -pkg $app_pkg -target /# Unmount volume, delete temporal fileecho "Cleaning up..."hdiutil unmount $volume -quietrm $tmp_fileecho "Done!"exit 0