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

@@ -11,7 +11,6 @@ coreutils
flex
fzf
gcc
g++
gettext
go
htop
@@ -28,13 +27,12 @@ openssh
patch
pkg-config
python
pip3
pylint
virtualenv
ripgrep
rust
sed
sudo
gsed
gawk
tmux
vim
yamllint

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" \
;
}