diff options
author | Alexander Arlt <alexander.arlt@arlt-labs.com> | 2018-02-16 07:03:12 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-04-23 18:10:39 +0800 |
commit | 0b49fd34931bd27c47b2f9dea39f4c75b3b2937f (patch) | |
tree | cbe0342fb088823881495389987cf79a099c064c /scripts | |
parent | 2fae248dbe50bed93268529724c1e3691f3c4a3f (diff) | |
download | dexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.tar.gz dexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.tar.zst dexon-solidity-0b49fd34931bd27c47b2f9dea39f4c75b3b2937f.zip |
CMake: Update jsoncpp to v1.8.4
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create_source_tarball.sh | 2 | ||||
-rwxr-xr-x | scripts/release_ppa.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create_source_tarball.sh b/scripts/create_source_tarball.sh index 9e66799a..4e930707 100755 --- a/scripts/create_source_tarball.sh +++ b/scripts/create_source_tarball.sh @@ -32,7 +32,7 @@ REPO_ROOT="$(dirname "$0")"/.. fi # Add dependencies mkdir -p "$SOLDIR/deps/downloads/" 2>/dev/null || true - wget -O "$SOLDIR/deps/downloads/jsoncpp-1.7.7.tar.gz" https://github.com/open-source-parsers/jsoncpp/archive/1.7.7.tar.gz + wget -O "$SOLDIR/deps/downloads/jsoncpp-1.8.4.tar.gz" https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz mkdir -p "$REPO_ROOT/upload" tar czf "$REPO_ROOT/upload/solidity_$versionstring.tar.gz" -C "$TEMPDIR" "solidity_$versionstring" rm -r "$TEMPDIR" diff --git a/scripts/release_ppa.sh b/scripts/release_ppa.sh index 375b4d1b..b1601336 100755 --- a/scripts/release_ppa.sh +++ b/scripts/release_ppa.sh @@ -76,7 +76,7 @@ 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 +wget -O ./solc/deps/downloads/jsoncpp-1.8.4.tar.gz https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz # Determine version cd solc |