From 9fa66940f302e01b97b8cc6c8efd126743b88b89 Mon Sep 17 00:00:00 2001 From: Michel Jouvin Date: Thu, 7 Nov 2024 22:27:49 +0100 Subject: [PATCH] Add debugging information when --continuous integration is present --- src/scripts/get-template-library | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scripts/get-template-library b/src/scripts/get-template-library index 21d9bb06be..e3f1aa0624 100755 --- a/src/scripts/get-template-library +++ b/src/scripts/get-template-library @@ -238,6 +238,7 @@ fi # NOTE: currently only Travis is supported if [ ${use_ci_work_dir} -eq 1 ] then + echo [ ${verbose} -eq 1 ] && "Configuring continuous integration mode..." if [ -n "${TRAVIS_BUILD_DIR}" ] then ci_work_dir=${TRAVIS_BUILD_DIR} @@ -260,6 +261,7 @@ then echo "TRAVIS_BRANCH not defined: not a Travis build environment, --continuous-integration invalid" exit 2 fi + [ ${verbose} -eq 1 ] && echo "CI mode: ci_work_dir=${ci_work_dir}, pr_repo=${pr_repo}, pr_target=${pr_target}" fi if [ ${add_legacy} -ne 1 ]