#!/usr/bin/env bash

set -e -u -o pipefail

if [[ $# -eq 1 ]] && [[ $1 = "--version" ]]; then
    echo "1.2.3"
fi
