#!/bin/sh
# Do gear-commit -a

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

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

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

docmd gear-commit $ARG $@
