Michal Marek 9bee79
#! /bin/bash
Michal Marek 9bee79
Michal Marek 0a417c
#############################################################################
Michal Marek 0a417c
# Copyright (c) 2004,2008,2009 Novell, Inc.
Michal Marek 0a417c
# All Rights Reserved.
Michal Marek 0a417c
#
Michal Marek 0a417c
# This program is free software; you can redistribute it and/or
Michal Marek 0a417c
# modify it under the terms of version 2 of the GNU General Public License as
Michal Marek 0a417c
# published by the Free Software Foundation.
Michal Marek 0a417c
#
Michal Marek 0a417c
# This program is distributed in the hope that it will be useful,
Michal Marek 0a417c
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Michal Marek 0a417c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
Michal Marek 0a417c
# GNU General Public License for more details.
Michal Marek 0a417c
#
Michal Marek 0a417c
# You should have received a copy of the GNU General Public License
Michal Marek 0a417c
# along with this program; if not, contact Novell, Inc.
Michal Marek 0a417c
#
Michal Marek 0a417c
# To contact Novell about this file by physical or electronic mail,
Michal Marek 0a417c
# you may find current contact information at www.novell.com
Michal Marek 0a417c
#############################################################################
Michal Marek 0a417c
Michal Marek 9bee79
# Find out which files appear to have changed. Used by scripts/log
Michal Marek 9bee79
Michal Marek 9bee79
. ${0%/*}/wd-functions.sh
Michal Marek 9bee79
Michal Marek 9bee79
if ! $using_git; then
Michal Marek 9bee79
	exit 0
Michal Marek 9bee79
fi
Michal Marek 9bee79
git diff --name-only --diff-filter=ACMRTUXB HEAD
Michal Marek 9bee79
git diff --name-only --diff-filter=D HEAD | sed 's/^/-/'
Michal Marek 9bee79