Skip to content

Commit

Permalink
Merge pull request ethereum#4 from bobsummerwill/ci_fixes
Browse files Browse the repository at this point in the history
Forgot to copy the updated release.sh script across too.
  • Loading branch information
bobsummerwill authored Jul 23, 2016
2 parents 4d2dc0d + e4942c6 commit 737dbff
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@

ZIP_SUFFIX=$1
ZIP_TEMP_DIR=$(pwd)/zip/
TESTS=$2

if [[ "$OSTYPE" == "darwin"* ]]; then
DLL_EXT=dylib
Expand All @@ -48,9 +49,11 @@ cp ethkey/ethkey $ZIP_TEMP_DIR
cp ethminer/ethminer $ZIP_TEMP_DIR
cp ethvm/ethvm $ZIP_TEMP_DIR
cp rlp/rlp $ZIP_TEMP_DIR
cp test/libethereum/test/testeth $ZIP_TEMP_DIR
cp test/libweb3core/test/testweb3core $ZIP_TEMP_DIR
cp test/webthree/test/testweb3 $ZIP_TEMP_DIR
if [[ "$TESTS" == "On" ]]; then
cp test/libethereum/test/testeth $ZIP_TEMP_DIR
cp test/libweb3core/test/testweb3core $ZIP_TEMP_DIR
cp test/webthree/test/testweb3 $ZIP_TEMP_DIR
fi

# Copy all the dynamic libraries into a temporary directory prior to ZIP creation.
# There are a lot of these, and it would be great if we didn't have to worry about them.
Expand Down

0 comments on commit 737dbff

Please sign in to comment.