From 831b5805a809a137bbd503415c4262192626c7d2 Mon Sep 17 00:00:00 2001 From: Joakim Bech <joakim.bech@linaro.org> Date: Sun, 9 Jul 2017 10:08:23 +0200 Subject: [PATCH] Travis: Add -p when create the bin folder It seems like Travis have changed the images in such a way that there is already a $HOME/bin folder, therefore we must use the '-p', when creating the folder in our .travis.xml file. Signed-off-by: Joakim Bech <joakim.bech@linaro.org> Acked-by: Jerome Forissier <jerome.forissier@linaro.org> --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 9a0ce16..8233433 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ env: #- $REPO_PROJ=dra7xx # Cannot build this since it requires TI_SECURE_DEV_PKG before_script: - - mkdir $HOME/bin + - mkdir -p $HOME/bin - cd $HOME/bin && wget https://storage.googleapis.com/git-repo-downloads/repo && chmod +x repo - export PATH=$HOME/bin:$PATH - mkdir -p $HOME/$REPO_PROJ -- GitLab