From edd3435c13f45ac48c9bbdb6164b8c5226959d2b Mon Sep 17 00:00:00 2001 From: James Ives Date: Sun, 3 Mar 2019 11:16:36 -0500 Subject: [PATCH] Update entrypoint.sh --- entrypoint.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index b2ec7269..33488d3f 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -25,11 +25,8 @@ git checkout master && \ git push $GITHUB_REPOSITORY $BRANCH:$BRANCH && \ # Builds the project if applicable. -if [ -z "$BUILD_SCRIPT" ] -then - echo "This is now running $BUILD_SCRIPT" - eval "$BUILD_SCRIPT" -fi +echo "This is now running $BUILD_SCRIPT" +eval "$BUILD_SCRIPT" # Commits the data to Github. git add -f $FOLDER && \