From dc8a5f4ef5505f2aeb017dfa4c9aca77a9fd93aa Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 8 Nov 2016 16:41:25 +0100 Subject: [PATCH] Fetch jsoncpp tarball during ppa release. --- scripts/release_ppa.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/release_ppa.sh b/scripts/release_ppa.sh index 39003795b..86288c47f 100755 --- a/scripts/release_ppa.sh +++ b/scripts/release_ppa.sh @@ -49,6 +49,10 @@ cd $distribution git clone --recursive https://github.com/ethereum/solidity.git -b "$branch" mv solidity solc +# Fetch jsoncpp dependency +mkdir -p ./solc/deps/downloads/ 2>/dev/null || true +wget -O ./solc/deps/downloads/jsoncpp-1.7.7.tar.gz https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz + # Determine version cd solc version=`grep -oP "PROJECT_VERSION \"?\K[0-9.]+(?=\")"? CMakeLists.txt`