Select the types of activity you want to include in your feed.
1#!/bin/sh 2set -e 3( 4 cd $(dirname $0) 5 export JAVA_HOME=/home/ryan/apps/android-studio/jre/ 6 make "$@" 7 if [ -x ./test ]; then 8 ./test 9 fi 10)