From 93d1ddd684839f0391a0eaf5f020792f3522a9ec Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Fri, 18 Jan 2019 17:38:07 +0100 Subject: [PATCH] Travis: Clone flutter in a tmp directory This way when we run flutter analyze, we do not get a huge dump, because it is analyzing the flutter source code. --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0594bbf3..c1e780be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,12 +11,11 @@ addons: packages: - lib32stdc++6 install: + - cd /tmp/ - git clone https://github.com/flutter/flutter.git -b beta - ./flutter/bin/flutter doctor script: - - pwd - - ls - - ./flutter/bin/flutter $COMMAND + - /tmp/flutter/bin/flutter $COMMAND cache: directories: - $HOME/.pub-cache