May want to set defaults from the override file

This commit is contained in:
Pat Riehecky 2014-06-26 14:37:41 -05:00 committed by Johnny Hughes
parent e1634fc7ca
commit 828874b5c2

View file

@ -39,16 +39,16 @@ warn () {
RHELAUTHOR="CentOS Buildsys <bugs@centos.org>"
# for setting any overrides, such as RHELAUTHOR
if [ -f /etc/centos-git-common ]; then
. /etc/centos-git-common
fi
RHELONLY=0
QUIET=0
WITHCOMMITHASH=0
BRANCH=""
# for setting any overrides, such as RHELAUTHOR or default BRANCH
if [ -f /etc/centos-git-common ]; then
. /etc/centos-git-common
fi
#####################################################################
# setup args in the right order for making getopt evaluation
# nice and easy. You'll need to read the manpages for more info