From 6180c7e6becc8b9831acfead9106ccf19472c13c Mon Sep 17 00:00:00 2001 From: yage Date: Tue, 4 Feb 2025 15:25:36 -0700 Subject: [PATCH] more macos stuff --- setup/os-dependencies/macos.txt | 6 ++---- setup/os.zsh | 6 +++--- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/setup/os-dependencies/macos.txt b/setup/os-dependencies/macos.txt index 2aa66f3..b343925 100644 --- a/setup/os-dependencies/macos.txt +++ b/setup/os-dependencies/macos.txt @@ -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 diff --git a/setup/os.zsh b/setup/os.zsh index 7d3e911..363691c 100644 --- a/setup/os.zsh +++ b/setup/os.zsh @@ -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" \ ; }