From a05ae6cafe3550a6d8894f335e18c502b7a069f7 Mon Sep 17 00:00:00 2001 From: Artem Smirnov Date: Tue, 21 Aug 2018 23:13:45 +0300 Subject: [PATCH] image_builder: add params message --- image_builder/autobuild.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/image_builder/autobuild.sh b/image_builder/autobuild.sh index d9fd8d58..ee6afa3c 100755 --- a/image_builder/autobuild.sh +++ b/image_builder/autobuild.sh @@ -10,6 +10,12 @@ export TARGET_REPO=${TARGET_REPO:='https://github.com/urpylka/clever.git'} export TARGET_REF=${TARGET_REF:='qemu_test_2'} export TARGET_CONFIG=${TARGET_CONFIG:='/image_builder/scripts/builder.json'} +echo "================================================================================" +echo "\$TARGET_REPO: $TARGET_REPO" +echo "\$TARGET_REF: $TARGET_REF" +echo "\$TARGET_CONFIG: $TARGET_CONFIG" +echo "================================================================================" + # TODO: The repository can be already downloaded, use the TARGET_REPO also as unix path. REPO_DIR=$(mktemp -d --suffix=.builder_repo) git clone ${TARGET_REPO} --single-branch --branch ${TARGET_REF} --depth 1 ${REPO_DIR} \