IAP GITLAB

Skip to content
Snippets Groups Projects
get_changes.sh 292 B
Newer Older
#!/usr/bin/env bash
#
# Usage: get_changes.sh
#
# Print lcov change log information as provided by Git

TOOLDIR=$(cd $(dirname $0) >/dev/null ; pwd)

cd $TOOLDIR

if ! git --no-pager log --no-merges --decorate=short --color=never 2>/dev/null ; then
	cat "$TOOLDIR/../CHANGES" 2>/dev/null
fi