From b139d8c7c0f3e1b524fcd63896fea3102162928f Mon Sep 17 00:00:00 2001 From: plocket <52798256+plocket@users.noreply.github.com> Date: Fri, 16 Oct 2020 21:40:17 -0400 Subject: [PATCH] Try to add destination folder to bash --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 86cfe27..b785a2e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -32,7 +32,8 @@ ls -la "$CLONE_DIR" #ls -la "$CLONE_DIR" echo "Copying contents to to git repo" -cp -r "$FOLDER"/* "$CLONE_DIR" +mkdir -p $CLONE_DIR/$INPUT_DESTINATION_FOLDER +cp -r "$FOLDER"/* "$CLONE_DIR/$INPUT_DESTINATION_FOLDER" cd "$CLONE_DIR" ls -la