From 4c5952dc995c53e686752a9eeb0392c9cf7e1eca Mon Sep 17 00:00:00 2001 From: Christopher Purta Date: Tue, 31 Jul 2018 08:10:05 -0700 Subject: [PATCH] Copy correct parity repo to jsonrpc folder Copy correct parity repo to jsonrpc folder before attempting to build docs since the CI runner clones the repo as parity and not parity-ethereum. --- scripts/gitlab-rpc-docs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gitlab-rpc-docs.sh b/scripts/gitlab-rpc-docs.sh index 2887401f2..08e7b29d5 100755 --- a/scripts/gitlab-rpc-docs.sh +++ b/scripts/gitlab-rpc-docs.sh @@ -6,7 +6,6 @@ clone_repos() { } build_docs() { - cp parity-ethereum jsonrpc/.parity npm install npm run build:markdown } @@ -36,6 +35,7 @@ upload_files() { setup_git clone_repos +cp parity jsonrpc/.parity cd jsonrpc build_docs cd ..