diff --git a/developer/bin/update_cask_family b/developer/bin/update_cask_family index dcbe8e9b11..25a090c94a 100755 --- a/developer/bin/update_cask_family +++ b/developer/bin/update_cask_family @@ -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)' }