From 99e1a22608c6aa57ea78567683e98fcbcc9eb552 Mon Sep 17 00:00:00 2001 From: Aric Gardner Date: Fri, 26 Jun 2020 14:51:07 -0400 Subject: [PATCH] Fix ONAP exception. Missed this one on my last go. masterproject must equal rtdproject Signed-off-by: Aric Gardner Change-Id: I1a184885dfee04f6abde6f29482d292bc7d85c58 --- shell/rtdv3.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell/rtdv3.sh b/shell/rtdv3.sh index 314ce9ff..23d373d1 100644 --- a/shell/rtdv3.sh +++ b/shell/rtdv3.sh @@ -41,10 +41,13 @@ fi #MASTER_RTD_PROJECT as a global jenkins cnt masterproject="$umbrella-$MASTER_RTD_PROJECT" -#Exception needed for onap, due to importing their old docs. +#Exceptions needed for onap, due to importing their old docs. if [[ $masterproject == "onap-doc" ]]; then masterproject="onap" fi +if [[ $rtdproject == "onap-doc" ]]; then + rtdproject="onap" +fi echo "INFO:" -- 2.16.6