|
|
415946 |
#!/bin/bash
|
|
|
415946 |
#
|
|
|
b88a91 |
# identity_copy.sh -- This function duplicates rendition stuff.
|
|
|
9b4d7d |
# Rendition stuff is formed by design models, design images and
|
|
|
9b4d7d |
# pre-rendition configuration scripts (which includes translations
|
|
|
9b4d7d |
# files). This way, when we say to duplicate rendition stuff we are
|
|
|
9b4d7d |
# saying to duplicate these four directory structures (i.e., design
|
|
|
9b4d7d |
# models, design images, pre-rendition configuration scripts, and
|
|
|
9b4d7d |
# related translations files).
|
|
|
415946 |
#
|
|
|
415946 |
# Copyright (C) 2009-2011 Alain Reguera Delgado
|
|
|
415946 |
#
|
|
|
415946 |
# This program is free software; you can redistribute it and/or
|
|
|
415946 |
# modify it under the terms of the GNU General Public License as
|
|
|
415946 |
# published by the Free Software Foundation; either version 2 of the
|
|
|
415946 |
# License, or (at your option) any later version.
|
|
|
415946 |
#
|
|
|
415946 |
# This program is distributed in the hope that it will be useful, but
|
|
|
415946 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
415946 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
415946 |
# General Public License for more details.
|
|
|
415946 |
#
|
|
|
415946 |
# You should have received a copy of the GNU General Public License
|
|
|
415946 |
# along with this program; if not, write to the Free Software
|
|
|
415946 |
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
415946 |
# USA.
|
|
|
415946 |
#
|
|
|
415946 |
# ----------------------------------------------------------------------
|
|
|
415946 |
# $Id$
|
|
|
415946 |
# ----------------------------------------------------------------------
|
|
|
415946 |
|
|
|
b88a91 |
function identity_copy {
|
|
|
415946 |
|
|
|
415946 |
# Verify target directory.
|
|
|
415946 |
cli_checkRepoDirTarget
|
|
|
415946 |
|
|
|
ebe7f2 |
# Determine what directory structure we are duplicating.
|
|
|
415946 |
|
|
|
415946 |
}
|