#!/bin/bash

set -e

[ "$DEBUG" = "true" ] && set -x

echo "Running \"post-deploy\" hook."

run-hooks post_deploy

echo "Post deployment finished."
