#!/usr/bin/env bash

#
# output message and stop script execution
#
function die() {
  echo "$1"
  exit 1
}
