You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -50,14 +50,14 @@ You can add arbitrary directories to the cache, allowing you to avoid the overhe
50
50
51
51
Tell CircleCI to save a cached copy using the
52
52
[`cache_directories` settings in your `circle.yml` file](/docs/configuration/#cache-directories).
53
-
Then check for the directory before you download elasticsearch:
53
+
Then check for the directory before you download Elasticsearch:
54
54
55
55
```
56
56
dependencies:
57
57
cache_directories:
58
-
- elasticsearch-1.0.1 # relative to the build directory
58
+
- elasticsearch-2.4.3 # relative to the build directory
59
59
post:
60
-
- if [[ ! -e elasticsearch-1.0.1 ]]; then wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.0.1.tar.gz && tar -xvf elasticsearch-1.0.1.tar.gz; fi
- if [[ ! -e elasticsearch-2.4.3 ]]; then wget https://download.elastic.co/elasticsearch/release/org/elasticsearch/distribution/tar/elasticsearch/2.4.3/elasticsearch-2.4.3.tar.gz && tar -xvf elasticsearch-2.4.3.tar.gz; fi
0 commit comments