From 62625ca662e6a363cc0dc15df910744781064f4c Mon Sep 17 00:00:00 2001 From: yann300 Date: Tue, 5 Mar 2019 13:10:50 +0100 Subject: [PATCH] fix deploy to alpha --- ci/deploy_from_travis_remix-alpha.sh | 2 +- ci/deploy_from_travis_remix-live.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/deploy_from_travis_remix-alpha.sh b/ci/deploy_from_travis_remix-alpha.sh index 4ddc570551..89897cfe17 100755 --- a/ci/deploy_from_travis_remix-alpha.sh +++ b/ci/deploy_from_travis_remix-alpha.sh @@ -7,7 +7,7 @@ SHA=`git rev-parse --short --verify HEAD` git config user.name "$COMMIT_AUTHOR" git config user.email "$COMMIT_AUTHOR_EMAIL" git checkout --orphan gh-pages -git rm --cached -r . +git rm --cached -r -f . echo "# Automatic build" > README.md echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md diff --git a/ci/deploy_from_travis_remix-live.sh b/ci/deploy_from_travis_remix-live.sh index a2d39bb05e..1636e0b497 100755 --- a/ci/deploy_from_travis_remix-live.sh +++ b/ci/deploy_from_travis_remix-live.sh @@ -7,7 +7,7 @@ SHA=`git rev-parse --short --verify HEAD` git config user.name "$COMMIT_AUTHOR" git config user.email "$COMMIT_AUTHOR_EMAIL" git checkout --orphan gh-pages -git rm --cached -r . +git rm --cached -r -f . echo "# Automatic build" > README.md echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md