update_cask_family: add netbeans (#61797)

This commit is contained in:
Vítor Galvão
2019-04-11 16:43:36 +01:00
committed by GitHub
parent cace22666d
commit f4b63f5b79
+5 -1
View File
@@ -1,7 +1,7 @@
#!/bin/bash
readonly program="$(basename "${0}")"
readonly families=(eclipse flash navicat unity) # Needs to be in sync with the 'get_' functions
readonly families=(eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions
readonly cask_family="${1}"
readonly new_version="${2}"
@@ -38,6 +38,10 @@ function get_navicat {
brew search 'navicat' | grep 'navicat-[fp]'
}
function get_netbeans {
brew search 'netbeans' | grep 'netbeans'
}
function get_unity {
brew search 'unity' | grep '^unity' | grep --invert-match --extended-regexp '(hub|player|assets)'
}