Don't create publish_dir symlink

The script create-changelog.sh created a symlink "publish_dir" in
$BUILD_HOME by mistake. It was meant to support build cleanup script on
CENGN, but this link is not in fact required.

Signed-off-by: Davlet Panech <davlet.panech@windriver.com>
Change-Id: I936096349de9079391b25d45d3a1ac3c5ea4d2bc
This commit is contained in:
Davlet Panech 2022-09-02 10:43:21 -04:00
parent cfb8429646
commit 3485d07691
1 changed files with 0 additions and 3 deletions

View File

@ -81,8 +81,5 @@ if [[ -f "$BUILD_HOME/NEED_BUILD" ]] ; then
mkdir -p "$PUBLISH_DIR/outputs"
cp "$BUILD_OUTPUT_HOME/CHANGELOG" "$PUBLISH_DIR/outputs/CHANGELOG.txt"
cp "$BUILD_OUTPUT_HOME/CONTEXT" "$PUBLISH_DIR/outputs/CONTEXT.sh"
if ! same_path "$BUILD_OUTPUT_ROOT" "$PUBLISH_ROOT" ; then
ln -s "$PUBLISH_DIR" "$BUILD_OUTPUT_HOME/publish_dir"
fi
fi