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

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# git_copyRepoFile.sh -- This function standardizes the way files
Alain Reguera Delgado 8f60cb
# (including directories) are duplicated inside the working copy. This
Alain Reguera Delgado 8f60cb
# function is an interface for git's `copy' command.
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_copyRepoFile {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local SOURCE=$(cli_checkRepoDirSource ${1})
Alain Reguera Delgado 8f60cb
    local TARGET=$(cli_checkRepoDirSource ${2})
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Verify source location absolute path. It should point to
Alain Reguera Delgado 8f60cb
    # existent files or directories. They don't need to be under
Alain Reguera Delgado 8f60cb
    # version control.
Alain Reguera Delgado 8f60cb
    cli_checkFiles ${SOURCE} -e
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Print action reference.
Alain Reguera Delgado 8f60cb
    if [[ -f ${SOURCE} ]];then
Alain Reguera Delgado 8f60cb
        cli_printMessage "${TARGET}/$(basename ${SOURCE})" --as-creating-line
Alain Reguera Delgado 8f60cb
    else
Alain Reguera Delgado 8f60cb
        cli_printMessage "${TARGET}" --as-creating-line
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    # Copy source location to its target using version control. I
Alain Reguera Delgado 8f60cb
    # didn't find a copy command for Git. If you know a better way to
Alain Reguera Delgado 8f60cb
    # track a copy action through Git, set it here.
Alain Reguera Delgado 8f60cb
    /bin/cp ${SOURCE} ${TARGET}
Alain Reguera Delgado 8f60cb
    if [[ $? -eq 0 ]];then
Alain Reguera Delgado 8f60cb
        ${COMMAND} add ${TARGET}
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
 
Alain Reguera Delgado 8f60cb
}