From f4b63f5b7904a86f3ece156bce9734a3d57f7c71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Galv=C3=A3o?= Date: Thu, 11 Apr 2019 16:43:36 +0100 Subject: [PATCH] update_cask_family: add netbeans (#61797) --- developer/bin/update_cask_family | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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)' }