#!/bin/sh

# Version is set in the GitLab CI pipeline if a commit is tagged

if test x"$ZOLO_VERSION" = x""; then
    echo "0.1.0"
else
    echo "$ZOLO_VERSION"
fi
