feat: add device uid to brew backup msg

This commit is contained in:
2024-06-09 16:39:09 +03:00
parent 7c42a3c385
commit 218eeefe5d

View File

@@ -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`,
])