Include full name for brew installer
This commit is contained in:
parent
1e5c0fca77
commit
1452aa0e4e
1 changed files with 3 additions and 3 deletions
|
@ -25,7 +25,7 @@ install_homebrew() {
|
||||||
install_shared_brew_packages() {
|
install_shared_brew_packages() {
|
||||||
echo -n Checking shared brew packages...
|
echo -n Checking shared brew packages...
|
||||||
missing_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" " "
|
| tr "\n" " "
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ install_linux_packagges() {
|
||||||
install_darwin_brew_packages() {
|
install_darwin_brew_packages() {
|
||||||
echo -n Checking Darwin brew packages...
|
echo -n Checking Darwin brew packages...
|
||||||
missing_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" " "
|
| tr "\n" " "
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ install_darwin_brew_cask_packages() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
missing_packages=$(
|
missing_packages=$(
|
||||||
comm -23 <(cat $package_files | sort) <(brew list | sort) \
|
comm -23 <(cat $package_files | sort) <(brew list --full-name | sort) \
|
||||||
| tr "\n" " "
|
| tr "\n" " "
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue