From 1452aa0e4e9dd686c64c079dbf8993dd76421a99 Mon Sep 17 00:00:00 2001 From: Andrew Tomaka Date: Mon, 27 May 2024 10:39:01 -0400 Subject: [PATCH] Include full name for brew installer --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index cfaaff1..6ba2e61 100755 --- a/install.sh +++ b/install.sh @@ -25,7 +25,7 @@ install_homebrew() { install_shared_brew_packages() { echo -n Checking shared brew packages... missing_packages=$( - comm -23 <(cat packages-shared-brew.txt) <(brew list | sort) \ + comm -23 <(cat packages-shared-brew.txt) <(brew list --full-name | sort) \ | tr "\n" " " ) @@ -153,7 +153,7 @@ install_linux_packagges() { install_darwin_brew_packages() { echo -n Checking Darwin brew packages... missing_packages=$( - comm -23 <(cat packages-darwin-brew.txt) <(brew list | sort) \ + comm -23 <(cat packages-darwin-brew.txt) <(brew list --full-name | sort) \ | tr "\n" " " ) @@ -177,7 +177,7 @@ install_darwin_brew_cask_packages() { fi missing_packages=$( - comm -23 <(cat $package_files | sort) <(brew list | sort) \ + comm -23 <(cat $package_files | sort) <(brew list --full-name | sort) \ | tr "\n" " " )