mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
30 lines
808 B
Bash
30 lines
808 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This script is run from the user's Constellation workspace (BUILD_WORKING_DIRECTORY).
|
||
|
# It prepares the workspace by symlinking all required binaries into folder.
|
||
|
|
||
|
lib=$(realpath @@BASE_LIB@@) || exit 1
|
||
|
bootstrapper=$(realpath @@BOOTSTRAPPER@@) || exit 1
|
||
|
upgrade_agent=$(realpath @@UPGRADE_AGENT@@) || exit 1
|
||
|
cli=$(realpath @@CLI@@) || exit 1
|
||
|
cdbg=$(realpath @@CDBG@@) || exit 1
|
||
|
|
||
|
# shellcheck source=../ci/lib.bash
|
||
|
if ! source "${lib}"; then
|
||
|
echo "Error: could not find import"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd "${BUILD_WORKING_DIRECTORY}" || exit 1
|
||
|
|
||
|
if [[ $# -eq 0 ]] ; then
|
||
|
workdir="."
|
||
|
else
|
||
|
workdir="$1"
|
||
|
fi
|
||
|
|
||
|
ln -sf "${bootstrapper}" "${workdir}/bootstrapper"
|
||
|
ln -sf "${upgrade_agent}" "${workdir}/upgrade-agent"
|
||
|
ln -sf "${cli}" "${workdir}/constellation"
|
||
|
ln -sf "${cdbg}" "${workdir}/cdbg"
|