1
0
mirror of https://github.com/HariSekhon/DevOps-Bash-tools.git synced 2025-02-06 10:24:43 +00:00

updated brew_install_packages.sh
All checks were successful
SonarCloud / SonarCloud (push) Has been skipped

This commit is contained in:
Hari Sekhon 2024-09-23 12:22:35 +01:00
parent 923274bd66
commit 34f300de0e

View File

@ -111,6 +111,12 @@ if [ -n "${CASK:-}" ]; then
opts="--cask"
fi
echo
echo "Packages to be installed:"
echo
tr ' ' '\n' <<< "$packages"
echo
# Fails if any of the packages are already installed, so you'll probably want to ignore and continue and detect missing
# package later in build system if it's a problem eg. resulting in missing headers later in build
if [ -n "${NO_FAIL:-}" ]; then