Skip to content

Commit

Permalink
Fix #27
Browse files Browse the repository at this point in the history
  • Loading branch information
manoelcampos committed Apr 7, 2022
1 parent 00fa3ad commit 12bf1c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ if [[ $HAS_SOURCE_DIR == true ]]; then
git checkout -q --orphan gh-pages "$COMMIT_HASH" 1>/dev/null
mv "$INPUT_SOURCE_DIR" /tmp/source
#Ignores directories . and .git
find . -not -path './.git*' -not -name '.' -exec rm -rf {} \;
find . -not -path './.git*' -not -name '.' -exec rm -rf {} \; || true
mv /tmp/source/* .
git add .
else
Expand Down

0 comments on commit 12bf1c5

Please sign in to comment.