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
| #!/bin/bash | |
| # | |
| # Ouptuts the number of tasks running per AZ for a given service on a given ECS cluster | |
| # | |
| # | |
| # Boilerplate to setup a temp dir since we save some files for intermediate processing | |
| # | |
| set -e -o pipefail |
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
| 1. "Show Package Contents" on the GoLand.app | |
| 2. Edit Contents/Info.plist | |
| 3. Add | |
| <key>LSEnvironment</key> | |
| <dict> | |
| <key>PATH</key> | |
| <string>/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/sbin</string> | |
| </dict> | |
| 4. Run `/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user` |
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
| VAR=$([ "$(git diff --name-status HEAD HEAD^ | grep tests/ | wc -l | xargs)" -ge "1" ] && echo "yes" || echo "no") |
OlderNewer