Litecoin: Update Travis

This commit is contained in:
Adrian Gallagher 2019-05-03 07:13:25 -07:00
parent 2d9bd9aa4f
commit 74efce691f
No known key found for this signature in database
GPG Key ID: FE3348877809386C
3 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
export LC_ALL=C.UTF-8
DOCKER_EXEC echo \> \$HOME/.bitcoin # Make sure default datadir does not exist and is never read by creating a dummy file
DOCKER_EXEC echo \> \$HOME/.litecoin # Make sure default datadir does not exist and is never read by creating a dummy file
mkdir -p depends/SDKs depends/sdk-sources

View File

@ -34,7 +34,7 @@ BEGIN_FOLD distdir
DOCKER_EXEC make distdir VERSION=$HOST
END_FOLD
cd "bitcoin-$HOST" || (echo "could not enter distdir bitcoin-$HOST"; exit 1)
cd "litecoin-$HOST" || (echo "could not enter distdir litecoin-$HOST"; exit 1)
BEGIN_FOLD configure
DOCKER_EXEC ./configure --cache-file=../config.cache $BITCOIN_CONFIG_ALL $BITCOIN_CONFIG || ( cat config.log && false)

View File

@ -6,7 +6,7 @@
export LC_ALL=C.UTF-8
cd "build/bitcoin-$HOST" || (echo "could not enter distdir build/bitcoin-$HOST"; exit 1)
cd "build/litecoin-$HOST" || (echo "could not enter distdir build/litecoin-$HOST"; exit 1)
if [ "$RUN_UNIT_TESTS" = "true" ]; then
BEGIN_FOLD unit-tests