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