From 3274d534f4c0eda46ea93b8c06ed017041e1cf61 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Fri, 26 Aug 2022 08:46:39 +0200 Subject: [PATCH] init: rearrange clone output --- init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.sh b/init.sh index a785658..3ecc05f 100755 --- a/init.sh +++ b/init.sh @@ -183,7 +183,7 @@ function clone_meta () { TMP_LAYER_BRANCH=$BRANCH_NAME if test ! -d $TARGET_GIT_PATH/.git; then - echo -e "\033[35;1mclone from $LAYER_GIT_URL into $TARGET_GIT_PATH (branch $BRANCH_NAME)\033[0m" + echo -e "\033[35;1mclone branch $BRANCH_NAME from $LAYER_GIT_URL into $TARGET_GIT_PATH\033[0m" do_exec "git clone -b $BRANCH_NAME $LAYER_GIT_URL $TARGET_GIT_PATH" ' ' 'show_output' do_exec "git -C $TARGET_GIT_PATH checkout $BRANCH_HASH -b $IMAGE_VERSION" do_exec "git -C $TARGET_GIT_PATH pull -r origin $BRANCH_NAME" ' ' 'show_output'