Skip to content

Commit f4b63f5

Browse files
authored
update_cask_family: add netbeans (Homebrew#61797)
1 parent cace226 commit f4b63f5

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: developer/bin/update_cask_family

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
readonly program="$(basename "${0}")"
4-
readonly families=(eclipse flash navicat unity) # Needs to be in sync with the 'get_' functions
4+
readonly families=(eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions
55
readonly cask_family="${1}"
66
readonly new_version="${2}"
77

@@ -38,6 +38,10 @@ function get_navicat {
3838
brew search 'navicat' | grep 'navicat-[fp]'
3939
}
4040

41+
function get_netbeans {
42+
brew search 'netbeans' | grep 'netbeans'
43+
}
44+
4145
function get_unity {
4246
brew search 'unity' | grep '^unity' | grep --invert-match --extended-regexp '(hub|player|assets)'
4347
}

0 commit comments

Comments
 (0)