From 218eeefe5d258798a3e6668aaa5418a4b244ba3b Mon Sep 17 00:00:00 2001 From: Chen Asraf Date: Sun, 9 Jun 2024 16:39:09 +0300 Subject: [PATCH] feat: add device uid to brew backup msg --- utils/src/home/brew_cmd.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/src/home/brew_cmd.ts b/utils/src/home/brew_cmd.ts index d04961b7..2744f0c9 100644 --- a/utils/src/home/brew_cmd.ts +++ b/utils/src/home/brew_cmd.ts @@ -25,10 +25,10 @@ async function backup(opts: BrewOpts) { `brew bundle dump --formula --cask --tap --describe --force`, ...(opts.push ? [ - `git add Brewfile`, - `git commit -m "backup(brew): Update Brewfile (${syncDate})"`, - `git push`, - ] + `git add Brewfile`, + `git commit -m "backup(brew): Update Brewfile for ${DEVICE_UID} (${syncDate})"`, + `git push`, + ] : []), `popd`, ])