From ee43426c8f7fa28185f57027cc2ee000e17810ea Mon Sep 17 00:00:00 2001 From: Scott Little Date: Fri, 29 Jun 2018 15:29:25 -0400 Subject: [PATCH] Shorten "addons/wr-cgcs/layers/cgcs" to just "stx" Part of the project to remove cgcs references. Replace and shorten the path the needlessly long and complex "addons/wr-cgcs/layers/cgcs" path with just "stx". This update just fixes up paths found in scripts, comments and config files. Depends-On: https://review.openstack.org/579954 Depends-On: https://review.openstack.org/579957 Depends-On: https://review.openstack.org/580170 Depends-On: https://review.openstack.org/579979 Change-Id: I51288110d1076a7945db485f2a7fe43295b2e232 Signed-off-by: Scott Little --- utilities/build-info/build-info-1.0/collect.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utilities/build-info/build-info-1.0/collect.sh b/utilities/build-info/build-info-1.0/collect.sh index b7c34271c..8d06f6a62 100755 --- a/utilities/build-info/build-info-1.0/collect.sh +++ b/utilities/build-info/build-info-1.0/collect.sh @@ -77,9 +77,9 @@ else echo "WRS_GIT_BRANCH=\"$WRS_GIT_BRANCH\"" >> $destFile fi - echo "CGCS_SRC_DIR=\"$REPO/addons/wr-cgcs/layers/cgcs\"" >> $destFile + echo "CGCS_SRC_DIR=\"$REPO/stx\"" >> $destFile if [ "${CGCS_GIT_BRANCH}x" == "x" ]; then - echo "CGCS_GIT_BRANCH=\""`cd $REPO/addons/wr-cgcs/layers/cgcs/; git status -s -b | grep '##' | awk ' { printf $2 } '`"\"" >> $destFile + echo "CGCS_GIT_BRANCH=\""`cd $REPO/stx/; git status -s -b | grep '##' | awk ' { printf $2 } '`"\"" >> $destFile else echo "CGCS_GIT_BRANCH=\"$CGCS_GIT_BRANCH\"" >> $destFile fi