diff --git a/.travis/test_05_before_script.sh b/.travis/test_05_before_script.sh index 70caee979..a17439741 100755 --- a/.travis/test_05_before_script.sh +++ b/.travis/test_05_before_script.sh @@ -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 diff --git a/.travis/test_06_script_a.sh b/.travis/test_06_script_a.sh index 8cc593f93..f6c39df17 100755 --- a/.travis/test_06_script_a.sh +++ b/.travis/test_06_script_a.sh @@ -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) diff --git a/.travis/test_06_script_b.sh b/.travis/test_06_script_b.sh index e13abfd52..bada7888f 100755 --- a/.travis/test_06_script_b.sh +++ b/.travis/test_06_script_b.sh @@ -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