Last active
January 3, 2016 11:59
-
-
Save hexsprite/8460256 to your computer and use it in GitHub Desktop.
Use OSX Notification to notify when CloudFormation stack is ready to use
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 characters
| while aws cloudformation describe-stacks | grep CREATE_IN_PROGRESS >/dev/null; | |
| do | |
| sleep 1; | |
| done | |
| terminal-notifier -message "Environment Ready" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment