Blame Automation/Modules/Locale/locale_prepareWorkingDirectory.sh

Alain Reguera Delgado 8f60cb
#!/bin/bash
Alain Reguera Delgado 8f60cb
#
Alain Reguera Delgado 8f60cb
# locale_prepareWorkingDirectory.sh -- This function prepares the
Alain Reguera Delgado 8f60cb
# working directory where translation files should be stored.
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 locale_prepareWorkingDirectory {
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    local L10N_WORKDIR=$1
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    if [[ ! -d ${L10N_WORKDIR} ]];then
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Create localization working directory making parent
Alain Reguera Delgado 8f60cb
        # directories as needed. Subversion doesn't create directories
Alain Reguera Delgado 8f60cb
        # recursively, so we use the system's `mkdir' command and then
Alain Reguera Delgado 8f60cb
        # subversion to register the changes.
Alain Reguera Delgado 8f60cb
        mkdir -p ${L10N_WORKDIR}
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
        # Commit changes from working copy to central repository only.
Alain Reguera Delgado 8f60cb
        # At this point, changes in the repository are not merged in
Alain Reguera Delgado 8f60cb
        # the working copy, but chages in the working copy do are
Alain Reguera Delgado 8f60cb
        # committed up to central repository.
Alain Reguera Delgado 8f60cb
        cli_synchronizeRepoChanges "${L10N_BASEDIR}"
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
    elif [[ $L10N_WORKDIR == '' ]];then
Alain Reguera Delgado 8f60cb
    
Alain Reguera Delgado 8f60cb
        cli_printMessage "`gettext "The localization directory isn't defined."`" --as-error-line
Alain Reguera Delgado 8f60cb
        
Alain Reguera Delgado 8f60cb
    fi
Alain Reguera Delgado 8f60cb
Alain Reguera Delgado 8f60cb
}