export __cdist_output_dir __cdist_manifest for bin/cdist-type-emulator
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
3fdb5a2e24
commit
bfb1cee403
1 changed files with 3 additions and 1 deletions
|
@ -33,6 +33,9 @@ __cdist_output_dir="$1"; shift
|
||||||
# Always start from local base
|
# Always start from local base
|
||||||
__cdist_work_dir="$__cdist_local_base_dir"
|
__cdist_work_dir="$__cdist_local_base_dir"
|
||||||
|
|
||||||
|
# Export information for cdist-type-emulator
|
||||||
|
export __cdist_output_dir __cdist_manifest
|
||||||
|
|
||||||
# Ensure binaries exist and are up-to-date
|
# Ensure binaries exist and are up-to-date
|
||||||
cdist-type-build-emulation || __cdist_exit_err "Failed to build type emulation binaries"
|
cdist-type-build-emulation || __cdist_exit_err "Failed to build type emulation binaries"
|
||||||
|
|
||||||
|
@ -45,7 +48,6 @@ if [ ! -x "${__cdist_manifest}" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p "${__cdist_output_dir}" || __cdist_exit_err "Cannot create output dir ${__cdist_output_dir}"
|
mkdir -p "${__cdist_output_dir}" || __cdist_exit_err "Cannot create output dir ${__cdist_output_dir}"
|
||||||
|
|
||||||
cd "$__cdist_work_dir" || __cdist_exit_err "Cannot change to work dir \"$__cdist_work_dir\"."
|
cd "$__cdist_work_dir" || __cdist_exit_err "Cannot change to work dir \"$__cdist_work_dir\"."
|
||||||
|
|
||||||
__cdist_exec_fail_on_error "${__cdist_manifest}" "$@"
|
__cdist_exec_fail_on_error "${__cdist_manifest}" "$@"
|
||||||
|
|
Loading…
Reference in a new issue