From 97690d1efa91e8ee014eff21973bae4d6494790b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADtor=20Galv=C3=A3o?= Date: Wed, 29 May 2019 20:28:46 +0100 Subject: [PATCH] update_cask_family: add dcp-o-matic --- 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 3bf57d8d41..28387906f2 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=(ableton eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions +readonly families=(ableton dcpomatic eclipse flash navicat netbeans unity) # Needs to be in sync with the 'get_' functions readonly cask_family="${1}" readonly new_version="${2}" @@ -30,6 +30,10 @@ function get_ableton { brew search ableton | grep 'ableton-' | grep --invert-match '\d' } +function get_dcpomatic { + brew search 'dcp-o-matic' | grep 'dcp-o-matic' +} + function get_eclipse { brew search 'eclipse' | grep 'eclipse-' }