#!/bin/bash set -e pushd $(cd $(dirname ${0})/..; pwd) > /dev/null bold() { echo "$(tty -s && tput bold)$1$(tty -s && tput sgr0)" } clean() { bold "darknet clean" rm -rf "./third_party/src/darknet" } sync() { bold "darknet sync" [ -d "./third_party/src/darknet" ] || git clone --quiet https://github.com/AlexeyAB/darknet.git "./third_party/src/darknet" pushd "./third_party/src/darknet" > /dev/null git pull --quiet --prune popd > /dev/null } while [ "$#" != 0 ]; do command="$1" && shift case "${command}" in "clean") clean;; "sync") sync;; esac done