diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-08-23 08:20:14 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-23 08:20:14 +0800 |
commit | b013cf2e145825a9e250c61bc77825384b2af69e (patch) | |
tree | 5bc5562d96352462874474c90c62d708e3f77eef /.circleci/config.yml | |
parent | cb19623a3aaf22a386bd4a7d6477048a604be9a2 (diff) | |
parent | 3e56990db7673987ffddb80ff3bccab1c99712aa (diff) | |
download | dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar.gz dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar.bz2 dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar.lz dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar.xz dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.tar.zst dexon-sol-tools-b013cf2e145825a9e250c61bc77825384b2af69e.zip |
Merge pull request #1001 from 0xProject/fix/npm-login-with-package
fix: Make non-interactive npm login for publish tests more robust
Diffstat (limited to '.circleci/config.yml')
-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 a6fb511b9..bb2fa0239 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ jobs: paths: - node_modules/ - run: > - if [ -z "$(git diff --name-only v2-prototype packages/website)" ]; then + if [ -z "$(git diff --name-only development packages/website)" ]; then yarn build --exclude website else yarn build |