diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-27 17:51:38 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-27 17:51:38 +0800 |
commit | 77290c1efaa8a9e3ded93a4aea4849c16138e457 (patch) | |
tree | fade80656570577677ee7d7ba4f48b0776d0f8ba | |
parent | cb7660fbe70db233579104fbf5845181232c83ec (diff) | |
download | dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar.gz dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar.bz2 dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar.lz dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar.xz dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.tar.zst dexon-sol-tools-77290c1efaa8a9e3ded93a4aea4849c16138e457.zip |
Run yarn a second time if the first fails
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 2f139841b..373745a9f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,7 +22,7 @@ jobs: command: sudo npm install --global yarn@1.9.4 - run: name: yarn - command: yarn --frozen-lockfile install + command: yarn --frozen-lockfile install || yarn --frozen-lockfile install - save_cache: name: Save Yarn Package Cache key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }} |