More moving stuff around
This commit is contained in:
@@ -18,7 +18,7 @@ function caskget()
|
||||
# if not already installed
|
||||
local caskname=$(basename $1)
|
||||
|
||||
if ! brew cask list | grep ${caskname} >/dev/null; then
|
||||
if ! brew cask list | grep -w ${caskname} >/dev/null; then
|
||||
print_info "Installing ${caskname} from cask"
|
||||
brew cask install "$@"
|
||||
fi
|
||||
@@ -29,7 +29,7 @@ function brewget()
|
||||
# if not already installed
|
||||
local brewname=$(basename $1)
|
||||
|
||||
if ! brew list | grep ${brewname} >/dev/null; then
|
||||
if ! brew list | grep -w ${brewname} >/dev/null; then
|
||||
print_info "Brewing ${brewname}"
|
||||
brew install "$@"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user