From fe4206999a191d35b44a440f44aac96f2df96b6c Mon Sep 17 00:00:00 2001 From: Itay Cohen Date: Tue, 30 Jul 2019 19:20:57 +0300 Subject: [PATCH] [ci-skip] Deploy docs directly to _site --- scripts/deploy_docs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/deploy_docs.sh b/scripts/deploy_docs.sh index 42a38158..68692b31 100755 --- a/scripts/deploy_docs.sh +++ b/scripts/deploy_docs.sh @@ -12,7 +12,8 @@ git clone --depth 1 git@github.com:radareorg/cutter.re.git || exit 1 echo "Updating docs" rm -rf cutter.re/docs -cp -a docs/build/html cutter.re/docs || exit 1 +rm -rf cutter.re/_site/docs +cp -a docs/build/html cutter.re/_site/docs || exit 1 echo "Committing new changes"