#!/bin/bash set -e if [ -f .env ]; then source .env fi if [ -z ${1} ]; then echo "Please provide a job" exit 1 fi JOB="${1}" JSON=$(curl -s -X POST "${YOLO_WEB_URL}/job/claim/${JOB}") if [[ "${JSON}" != *"{"* ]]; then echo ERROR echo "${JSON}" exit 1 fi if [ -f ./scripts/claim_mail.sh ]; then bash ./scripts/claim_mail.sh "${JSON}" fi bash ./scripts/train.sh "${JSON}"