#!/usr/bin/env bash
# action-platform hook
set -euo pipefail
. "$(dirname "$0")/gitflow.sh"
gitflow_check branch "$(gitflow_current_branch)"
previous="$0.pre-action-platform"
[ -x "$previous" ] && exec "$previous" "$@"
exit 0
