This file contains 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
export ANDROID_HOME=/Users/$USER/Library/Android/sdk | |
RUNNING_EMU="$($ANDROID_HOME/platform-tools/adb devices | grep emulator -c)" | |
if [[ $RUNNING_EMU -eq 0 ]] | |
then | |
# If we're not given an AVD to run on let's find a suitable one to use | |
if [ $# -eq 0 ] | |
then | |
# if Pixel exists (dev has run the setup scripts) run that | |
if [ -f $HOME/.android/avd/Pixel.ini ] |
This file contains 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
docker stop $(docker ps -a -q) && docker system prune -a --volumes |
This file contains 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
module podchecker | |
go 1.16 | |
require ( | |
github.com/olekukonko/tablewriter v0.0.5 // indirect | |
k8s.io/api v0.22.4 // indirect | |
k8s.io/apimachinery v0.22.4 // indirect | |
k8s.io/client-go v0.22.4 // indirect | |
) |