#!/bin/sh

if [ -n "${CIRCLE_TAG}" ]; then
  echo "${CIRCLE_TAG}"
else
  git describe --long --tags --abbrev=10 --dirty
fi
