#!/bin/sh
# 2014, 2017 (c) Etersoft https://etersoft.ru
# Author: Vitaly Lipatov <lav@etersoft.ru>
# Public domain

# load common functions, compatible with local and installed script
. "$(dirname "$0")"/../share/eterbuild/functions/common

if [ "$1" = "-h" ] || [ "$1" = "--help" ]; then
	echo "gammit [-q] [-a] [files] - make commit with description from last changelog entry in spec"
	echo "Use: gammit"
	echo "     -q - skip editor"
	echo "     -a - commit all files"
	exit 0
fi

if [ "$1" = "-q" ] ; then
	shift
	NOEDIT=1
fi

# Skip the commit-message editor when asked (-q) or in non-interactive runs
# (no controlling terminal), otherwise gear-commit spawns $EDITOR (e.g. mcedit)
# and hangs. Mirrors the ! tty -s guard in add_changelog_helper (spec module).
if [ -n "$NOEDIT" ] || ! tty -s ; then
	ARG="$ARG --no-edit"
fi

# If no args
if [ -z "$1" ] ; then
	ARG="$ARG -a"
fi

docmd gear-commit $ARG "$@"
