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 <scott.little@windriver.com>
This commit is contained in:
Scott Little 2018-06-29 15:29:25 -04:00
parent 08900b32af
commit 927bc6c367
1 changed files with 2 additions and 2 deletions

View File

@ -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