From 2937570980098c5152eae7553a02bb7e74387ec4 Mon Sep 17 00:00:00 2001 From: Alain Reguera Delgado Date: Oct 10 2012 18:43:40 +0000 Subject: Update `Functions/Help/Texinfo/texinfo_createChapter.sh' file. --- diff --git a/Scripts/Bash/Functions/Help/Texinfo/texinfo_createChapter.sh b/Scripts/Bash/Functions/Help/Texinfo/texinfo_createChapter.sh index e5a023c..10654ec 100755 --- a/Scripts/Bash/Functions/Help/Texinfo/texinfo_createChapter.sh +++ b/Scripts/Bash/Functions/Help/Texinfo/texinfo_createChapter.sh @@ -66,7 +66,7 @@ function texinfo_createChapter { # Create chapter directory using subversion. This is the place # where all chapter-specific files will be stored in. if [[ ! -d ${MANUAL_CHAPTER_DIR} ]];then - svn mkdir ${MANUAL_CHAPTER_DIR} --quiet + ${CLI_NAME} svn --mkdir ${MANUAL_CHAPTER_DIR} fi # Create chapter-specific files using template files as reference. @@ -79,7 +79,7 @@ function texinfo_createChapter { cli_checkFiles ${FILE} --is-versioned # Copy template files into the chapter directory. - svn cp ${FILE} ${MANUAL_CHAPTER_DIR} --quiet + ${CLI_NAME} svn --copy ${FILE} ${MANUAL_CHAPTER_DIR} done