Skip to content

Instantly share code, notes, and snippets.

@Techcable
Techcable / profile.sh
Last active November 23, 2018 20:22
WarmRoast Wrapper
JAR_FILE=WarmRoast.jar
URL="http://builds.enginehub.org/job/warmroast/4523/download/warmroast-1.0.0-SNAPSHOT.jar"
SAMPLING_INTERVAL=10
if [ ! -e "$JAR_FILE" ];
then
echo attempting to download $JAR_FILE;
curl "$URL" > "$JAR_FILE";
fi;