Blame Automation/Modules/Vcs/Git/git_isVersioned.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# git_isVersioned.sh -- This function determines whether a location is
Alain Reguera Delgado 8f60cb
# under version control or not. When the location is under version
Alain Reguera Delgado 8f60cb
# control, this function returns `0'. When the location isn't under
Alain Reguera Delgado 8f60cb
# version control, this function returns `1'.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# Copyright (C) 2009-2013 The CentOS Project
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is free software; you can redistribute it and/or modify
Alain Reguera Delgado 8f60cb
# it under the terms of the GNU General Public License as published by
Alain Reguera Delgado 8f60cb
# the Free Software Foundation; either version 2 of the License, or (at
Alain Reguera Delgado 8f60cb
# your option) any later version.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# This program is distributed in the hope that it will be useful, but
Alain Reguera Delgado 8f60cb
# WITHOUT ANY WARRANTY; without even the implied warranty of
Alain Reguera Delgado 8f60cb
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Alain Reguera Delgado 8f60cb
# General Public License for more details.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# You should have received a copy of the GNU General Public License
Alain Reguera Delgado 8f60cb
# along with this program; if not, write to the Free Software
Alain Reguera Delgado 8f60cb
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
# $Id$
Alain Reguera Delgado 8f60cb
# ----------------------------------------------------------------------
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
function git_isVersioned {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Define the location absolute path we want to determine whether
Alain Reguera Delgado 8f60cb
    # it is under version control or not. Only the first non-option
Alain Reguera Delgado 8f60cb
    # argument passed to centos-art.sh command-line will be used.
Alain Reguera Delgado 8f60cb
    local LOCATION=$(cli_checkRepoDirSource "${1}")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Use Git to determine whether the location is under version
Alain Reguera Delgado 8f60cb
    # control or not.
Alain Reguera Delgado 8f60cb
    local OUTPUT=$(${COMMAND} status --porcelain ${LOCATION} \
Alain Reguera Delgado 8f60cb
        | egrep "\?\? ${LOCATION}")
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # If there are unversioned files inside location, stop the script
Alain Reguera Delgado 8f60cb
    # execution with an error message. All files must be under version
Alain Reguera Delgado 8f60cb
    # control except those set in the `.git/info/exclude/' file.
Alain Reguera Delgado 8f60cb
    if [[ ! -z ${OUTPUT} ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "${LOCATION} `gettext " contains untracked files."`" --as-error-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}