diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-27 22:10:32 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-02-27 22:10:32 +0000 |
| commit | 46d3ba84ed407548d368dd146393e747cfb2d0af (patch) | |
| tree | a41b4d194639ee2433fa5edbccfd57747a711115 /.travis.yml | |
| parent | a97b258b189123fc5d55992994bdaa9ec08b45eb (diff) | |
| download | sql-plus-plus-46d3ba84ed407548d368dd146393e747cfb2d0af.tar.xz sql-plus-plus-46d3ba84ed407548d368dd146393e747cfb2d0af.zip | |
Don't break build if yarn dir already exists
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 77706eb..492b27b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ cache: before_install: # OSX tar -C doesn't seem to create the directory if it doesnt exist. - - mkdir $HOME/.yarn + - mkdir -p $HOME/.yarn - curl -L https://yarnpkg.com/latest.tar.gz | tar xvz -C $HOME/.yarn --strip-components 1 - export PATH="$HOME/.yarn/bin:$PATH" |