#!/usr/bin/env bash
#
# image-tag-docker runs ./tools/image-tag but sanitizes invalid characters
# for use in Docker image tags.

TAG=$(/usr/bin/env bash ./tools/image-tag)
echo ${TAG//+/-}
