update_cask_family: add ableton

This commit is contained in:
Vítor Galvão
2019-05-29 20:25:45 +01:00
committed by GitHub
parent af5d2f78c4
commit 7873296aa5
+5 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
readonly program="$(basename "${0}")"
readonly families=(eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions
readonly families=(ableton eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions
readonly cask_family="${1}"
readonly new_version="${2}"
@@ -26,6 +26,10 @@ function is_in_array {
return 1
}
function get_ableton {
brew search ableton | grep 'ableton-' | grep --invert-match '\d'
}
function get_eclipse {
brew search 'eclipse' | grep 'eclipse-'
}