#!/bin/bash

set -e

if [[ -n "${CI}" ]]; then
    set -x
fi

if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
   python -m stactools.cli "$@"
fi
