From 73dfb46f87456b7476a7aa748a1cf263c007fa5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dietrich=20Kr=C3=B6nke?= Date: Thu, 7 Jan 2021 09:32:14 +0100 Subject: [PATCH] iox-#468 remove test comments from script MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Dietrich Krönke --- tools/iceoryx_build_test.sh | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/tools/iceoryx_build_test.sh b/tools/iceoryx_build_test.sh index 3f1126a3c8..71a141900e 100755 --- a/tools/iceoryx_build_test.sh +++ b/tools/iceoryx_build_test.sh @@ -321,20 +321,16 @@ if [ "$BUILD_DOC" == "ON" ]; then echo ">>>>>> Doxygen PDF Generation <<<<<<" cd $BUILD_DIR - rm -rf $WORKSPACE/build_out_of_tree if [ "$BUILD_ALL_FLAG" == "ON" ]; then COMPONENTS="${COMPONENTS} iceoryx_dds" fi - for dir in $COMPONENTS; do - echo "hier etwa?" - #if [ -d "$dir" ]; then - echo "hier auch?" - make doxygen_"$dir" - cd doc/"$dir"/latex - make - cd ../../.. - mv -v doc/"$dir"/latex/refman.pdf doc/"$dir"_doxygen.pdf - #fi + for cmp in $COMPONENTS; do + make doxygen_"$cmp" + cd doc/"$cmp"/latex + make + cd ../../.. + mv -v doc/"$cmp"/latex/refman.pdf doc/"$cmp"_doxygen.pdf done + echo ">>>>>> Doxygen PDF Generation complete <<<<<<" fi