diff options
author | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-02 18:00:53 +0200 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarit.de> | 2020-04-02 18:00:53 +0200 |
commit | 41f002b0ea3e82f9a2f7dd7b75dbbbf77b7986c0 (patch) | |
tree | 2576571c76192a5f56a430d6b03d68c356bb764f | |
parent | fc89c698bd81a582b5ea7095de32a12d54a40268 (diff) | |
download | searxng-41f002b0ea3e82f9a2f7dd7b75dbbbf77b7986c0.tar.gz searxng-41f002b0ea3e82f9a2f7dd7b75dbbbf77b7986c0.zip |
travis: remove before_cache handle
BTW: separate env output in the travis log
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 3c862fac6..76a20b00d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,14 +4,12 @@ language: python cache: - directories: - $HOME/.cache/pip -before_cache: - - sudo chown -R travis:travis $HOME/.cache/pip - - rm -f $HOME/.cache/pip/log/debug.log addons: firefox: "latest" install: - - env; which python; python --version + - env + - which python; python --version - make V=1 install - make V=1 gecko.driver - make V=1 node.env |