Blame Scripts/Bash/Functions/Svn/svn_syncroRepoChanges.sh
|
|
878a2b |
#!/bin/bash
|
|
|
878a2b |
#
|
|
|
384602 |
# svn_syncroRepoChanges.sh -- This function syncronizes both central
|
|
|
3e6a1a |
|
|
|
3e6a1a |
# subversion update command first and a subversion commit command
|
|
|
3e6a1a |
# later.
|
|
|
878a2b |
#
|
|
|
03486a |
# Copyright (C) 2009, 2010, 2011, 2012 The CentOS Project
|
|
|
878a2b |
#
|
|
|
878a2b |
# This program is free software; you can redistribute it and/or modify
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
878a2b |
#
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
878a2b |
# General Public License for more details.
|
|
|
878a2b |
#
|
|
|
878a2b |
|
|
|
878a2b |
# along with this program; if not, write to the Free Software
|
|
|
878a2b |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
878a2b |
#
|
|
|
878a2b |
# ----------------------------------------------------------------------
|
|
|
878a2b |
# $Id$
|
|
|
878a2b |
# ----------------------------------------------------------------------
|
|
|
878a2b |
|
|
|
384602 |
function svn_syncroRepoChanges {
|
|
|
878a2b |
|
|
|
3e6a1a |
|
|
|
3e6a1a |
|
|
|
3e6a1a |
# execution. Otherwise, if it is not under version control, finish
|
|
|
3e6a1a |
|
|
|
3e6a1a |
if [[ $(svn_isVersioned ${ACTIONVAL}) != 0 ]];then
|
|
|
3e6a1a |
cli_printMessage "${ACTIONVAL} `gettext "isn't under version control."`" --as-error-line
|
|
|
878a2b |
fi
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
153fa3 |
svn_updateRepoChanges
|
|
|
878a2b |
|
|
|
878a2b |
|
|
|
153fa3 |
svn_commitRepoChanges
|
|
|
878a2b |
|
|
|
878a2b |
}
|