Skip to content
This repository has been archived by the owner on Apr 9, 2023. It is now read-only.

Commit

Permalink
bash: replace "echo" with "do the install"
Browse files Browse the repository at this point in the history
  • Loading branch information
sven committed Sep 26, 2014
1 parent 6e031a2 commit 4bc9394
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ list="$(to_install "${recipes[*]}" "$(brew list)")"
if [[ "$list" ]]; then
for item in ${list[@]}
do
echo "$item is not on the list"
#echo "$item is not on the list"
brew install "$item"
done
else
e_arrow "Nothing to install. You've already got them all."
Expand Down

0 comments on commit 4bc9394

Please sign in to comment.