From fb246bfd447ed5441176681ca6383d1a3905f9f0 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 13 2012 17:05:09 +0000 Subject: Update `Functions/Help/Texinfo/texinfo_createStructureChapters.sh' file. --- diff --git a/Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructureChapters.sh b/Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructureChapters.sh index 744b9b9..1fc94d5 100755 --- a/Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructureChapters.sh +++ b/Scripts/Bash/Functions/Help/Texinfo/texinfo_createStructureChapters.sh @@ -49,13 +49,16 @@ function texinfo_createStructureChapters { # Repository and under version control, too. cli_checkFiles ${FILE} --is-versioned + # Print action name. + cli_printMessage "${MANUAL_CHAPTER_DIR}/$(basename ${FILE})" --as-creating-line + # Verify chapter's directory. If it doesn't exist, create it. if [[ ! -d ${MANUAL_CHAPTER_DIR} ]];then - ${CLI_NAME} svn --mkdir ${MANUAL_CHAPTER_DIR} + cli_runFnEnvironment svn --quiet --mkdir ${MANUAL_CHAPTER_DIR} fi # Copy template files into chapter's directory. - ${CLI_NAME} svn --copy ${FILE} ${MANUAL_CHAPTER_DIR} + cli_runFnEnvironment svn --quiet --copy ${FILE} ${MANUAL_CHAPTER_DIR} done