
Story: 2010226 Task: 46011 Change-Id: I721f1509637b910c05e4151eeb7ad7e1cb8db119 Signed-off-by: Davlet Panech <davlet.panech@windriver.com>
22 lines
332 B
Bash
Executable File
22 lines
332 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Copyright (c) 2022 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
set -e
|
|
source $(dirname "$0")/lib/job_utils.sh
|
|
|
|
require_env BUILD_RT
|
|
|
|
load_build_env
|
|
|
|
set -x
|
|
|
|
if [[ -d "$BUILD_HOME/mirrors" ]] ; then
|
|
mkdir -p "$BUILD_OUTPUT_HOME"
|
|
ln -sfn "$BUILD_HOME/mirrors" "$BUILD_OUTPUT_HOME/"
|
|
fi
|