echo "Checking if changelog is made for this branch";

PROPOSEDCLGFILE=$(release-tool hooks:made-changelog cli);
if [[ ! -f "$PROPOSEDCLGFILE" ]]; then
  echo "Please run release-tool changelog";
    exit 1;
fi
