reload binaries on manifest run

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-02-02 21:32:18 +01:00
parent 3156ef171e
commit 929d33c310
1 changed files with 5 additions and 2 deletions

View File

@ -28,11 +28,14 @@ if [ $# -ne 2 ]; then
__cdist_usage "<outdir> <manifest>"
fi
set -au
set -aeu
__cdist_output_dir="$1"; shift
__cdist_manifest="$1"; shift
# Ensure binaries exist and are up-to-date
cdist-build-bin
# prepend our path, so all cdist tools come before other tools
PATH="${__cdist_cache_bin}:$PATH"
@ -42,4 +45,4 @@ if [ ! -x "${__cdist_manifest_init}" ]; then
fi
mkdir -p "${__cdist_output_dir}"
"${__cdist_manifest_init}"
"${__cdist_manifest}"