Skip to content
Snippets Groups Projects
Commit 831b5805 authored by Joakim Bech's avatar Joakim Bech Committed by Joakim Bech
Browse files

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: default avatarJoakim Bech <joakim.bech@linaro.org>
Acked-by: default avatarJerome Forissier <jerome.forissier@linaro.org>
parent 1550f581
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ env: ...@@ -43,7 +43,7 @@ env:
#- $REPO_PROJ=dra7xx # Cannot build this since it requires TI_SECURE_DEV_PKG #- $REPO_PROJ=dra7xx # Cannot build this since it requires TI_SECURE_DEV_PKG
before_script: before_script:
- mkdir $HOME/bin - mkdir -p $HOME/bin
- cd $HOME/bin && wget https://storage.googleapis.com/git-repo-downloads/repo && chmod +x repo - cd $HOME/bin && wget https://storage.googleapis.com/git-repo-downloads/repo && chmod +x repo
- export PATH=$HOME/bin:$PATH - export PATH=$HOME/bin:$PATH
- mkdir -p $HOME/$REPO_PROJ - mkdir -p $HOME/$REPO_PROJ
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment