From caf13ad32c56a46d599bf8740cee985bbc3bae95 Mon Sep 17 00:00:00 2001 From: BAK BYEONG JUN Date: Wed, 9 Apr 2025 03:35:31 +0000 Subject: [PATCH] init --- tasks/git-clone-checkout/task.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tasks/git-clone-checkout/task.yaml b/tasks/git-clone-checkout/task.yaml index 4ded78b..5259d32 100644 --- a/tasks/git-clone-checkout/task.yaml +++ b/tasks/git-clone-checkout/task.yaml @@ -60,7 +60,7 @@ spec: - name: gitInitImage description: The image providing the git-init binary that this Task runs. type: string - default: "bitnami/git:2.48.1-debian-12-r6" + default: "alpine/git:2.47.2" - name: userHome description: | Absolute path to the user's home directory. @@ -112,6 +112,10 @@ spec: set -x fi + export PARAM_USER_HOME=$HOME + + echo "_____${PARAM_USER_HOME}" + # 디렉토리가 존재하는지 확인하고, 없으면 생성 if [ ! -d "${PARAM_USER_HOME}" ]; then mkdir -p "${PARAM_USER_HOME}"