From 61d842d2335f4f84d8fbfed316add2c1ff53dd29 Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Thu, 5 Nov 2020 17:39:27 +0000 Subject: [PATCH] Fix typo in a message --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 21ab5e3..bbb679e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -31,7 +31,7 @@ echo "Cleaning destination repository of old files" find "$CLONE_DIR" | grep -v "^$CLONE_DIR/\.git" | grep -v "^$CLONE_DIR$" | xargs rm -rf # delete all files (to handle deletions) ls -la "$CLONE_DIR" -echo "Copying contents to to git repo" +echo "Copying contents to git repo" cp -r "$SOURCE_DIRECTORY"/* "$CLONE_DIR" cd "$CLONE_DIR" ls -la