From fd0efe62efb48a8c8ac31b9b908c2270d69717c8 Mon Sep 17 00:00:00 2001
From: dadav <33197631+dadav@users.noreply.github.com>
Date: Thu, 3 Oct 2019 13:31:09 +0200
Subject: [PATCH] Fix cache bug

---
 .travis.yml | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index fcaee05..6a7249e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,11 +26,10 @@ branches:
 
 cache:
   apt: true
-  directories:
-    - qemu-4.1.0
 
 before_script:
-  - test -d qemu-4.1.0 || ( wget https://download.qemu.org/qemu-4.1.0.tar.xz && tar xvJf qemu-4.1.0.tar.xz )
+  - wget https://download.qemu.org/qemu-4.1.0.tar.xz
+  - tar xvJf qemu-4.1.0.tar.xz
   - cd qemu-4.1.0
   - ./configure --target-list=arm-softmmu
   - make -j$(nproc)