Skip to content

Commit 3d4be78

Browse files
committed
[TEST] Fix travis untarring
1 parent f3a2b0f commit 3d4be78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

travis/download_and_run_es.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ echo "Downloading Elasticsearch v${ES_VERSION}..."
1515
ES_URL="https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${ES_VERSION}.tar.gz"
1616

1717
curl -L -o elasticsearch-latest.tar.gz $ES_URL
18-
tar -xvfz "elasticsearch-latest.tar.gz"
18+
tar -xvf "elasticsearch-latest.tar.gz"
1919

2020
echo "Adding repo to config..."
2121
find . -name "elasticsearch.yml" | while read TXT ; do echo 'repositories.url.allowed_urls: ["http://*"]' >> $TXT ; done

0 commit comments

Comments
 (0)