more macos stuff

This commit is contained in:
2025-02-04 15:25:36 -07:00
parent 53cee5aa02
commit 6180c7e6be
2 changed files with 5 additions and 7 deletions

View File

@@ -125,7 +125,7 @@ INSTALL_MANAGED__debian() {
STATUS "checking / installing '$1'"
sudo apt-get install --yes $1 \
&& SUCCESS "'$1' installed" \
|| ERROR "failed to install ${TARGET}" \
|| ERROR "failed to install $1" \
;
}
@@ -134,7 +134,7 @@ INSTALL_MANAGED__fedora() {
STATUS "checking / installing '$1'"
sudo dnf install -y $1 \
&& SUCCESS "'$1' installed" \
|| ERROR "failed to install ${TARGET}" \
|| ERROR "failed to install $1" \
;
}
@@ -143,7 +143,7 @@ INSTALL_MANAGED__macos() {
STATUS "checking / installing '$1'"
yes | brew install $1 \
&& SUCCESS "'$1' installed" \
|| ERROR "failed to install ${TARGET}" \
|| ERROR "failed to install $1" \
;
}