We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cace226 commit f4b63f5Copy full SHA for f4b63f5
developer/bin/update_cask_family
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
readonly program="$(basename "${0}")"
4
-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
5
readonly cask_family="${1}"
6
readonly new_version="${2}"
7
@@ -38,6 +38,10 @@ function get_navicat {
38
brew search 'navicat' | grep 'navicat-[fp]'
39
}
40
41
+function get_netbeans {
42
+ brew search 'netbeans' | grep 'netbeans'
43
+}
44
+
45
function get_unity {
46
brew search 'unity' | grep '^unity' | grep --invert-match --extended-regexp '(hub|player|assets)'
47
0 commit comments