From 63d40a1688b52d4dcbcf37797ff14a355025c7fc Mon Sep 17 00:00:00 2001 From: Kyle Gospodnetich Date: Thu, 5 Oct 2023 23:42:10 -0700 Subject: [PATCH] feat: Add updater for brew (#76) Co-authored-by: gerblesh <101901964+gerblesh@users.noreply.github.com> --- files/etc/ublue-update.d/user/20-brew-update.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 files/etc/ublue-update.d/user/20-brew-update.sh diff --git a/files/etc/ublue-update.d/user/20-brew-update.sh b/files/etc/ublue-update.d/user/20-brew-update.sh new file mode 100644 index 0000000..85a549c --- /dev/null +++ b/files/etc/ublue-update.d/user/20-brew-update.sh @@ -0,0 +1,6 @@ +#!/usr/bin/env bash + +if command -v brew; then + brew update + brew upgrade +fi