Last active
November 22, 2016 06:05
-
-
Save donkaban/55c279eac11197b6822ae77d8aaf8c12 to your computer and use it in GitHub Desktop.
Revisions
-
Kirill A. Shabordin revised this gist
Nov 22, 2016 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ echo '}' brew tap | while read tap; do echo "brew tap $tap"; done brew leaves | while read item; do echo "install_package $item '$(brew info $item | /usr/bin/grep 'Built from source with:' | /usr/bin/sed 's/^[ \t]*Built from source with:/ /g; s/\,/ /g')'" done -
Kirill A. Shabordin created this gist
Nov 21, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ #!/bin/bash echo '#!/bin/bash' echo '' echo 'failed_items=""' echo 'function install_package() {' echo 'echo EXECUTING: brew install $1 $2' echo 'brew install $1 $2' echo '[ $? -ne 0 ] && $failed_items="$failed_items $1" # package failed to install.' echo '}' brew tap | while read tap; do echo "brew tap $tap"; done brew list | while read item; do echo "install_package $item '$(brew info $item | /usr/bin/grep 'Built from source with:' | /usr/bin/sed 's/^[ \t]*Built from source with:/ /g; s/\,/ /g')'" done echo '[ ! -z $failed_items ] && echo The following items were failed to install: && echo $failed_items'