diff options
author | Fabio Berger <me@fabioberger.com> | 2018-07-26 20:22:51 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-07-26 20:22:51 +0800 |
commit | d3be4f2852ca5bb35e50d27403715354b7485c4b (patch) | |
tree | eec7ab01b6d1af0e9c6774cbd5f756cb13afb9cb /packages | |
parent | e320f343f8d18a301bc1d74dcb2816e3d1e3be6f (diff) | |
download | dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar.gz dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar.bz2 dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar.lz dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar.xz dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.tar.zst dexon-sol-tools-d3be4f2852ca5bb35e50d27403715354b7485c4b.zip |
Add ending slash
Diffstat (limited to 'packages')
-rw-r--r-- | packages/monorepo-scripts/src/test_installation.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/monorepo-scripts/src/test_installation.ts b/packages/monorepo-scripts/src/test_installation.ts index 12c0e7603..55ff12083 100644 --- a/packages/monorepo-scripts/src/test_installation.ts +++ b/packages/monorepo-scripts/src/test_installation.ts @@ -10,7 +10,7 @@ import { utils } from './utils/utils'; (async () => { const IS_LOCAL_PUBLISH = process.env.IS_LOCAL_PUBLISH === 'true'; - const registry = IS_LOCAL_PUBLISH ? 'http://localhost:4873' : 'https://registry.npmjs.org'; + const registry = IS_LOCAL_PUBLISH ? 'http://localhost:4873/' : 'https://registry.npmjs.org/'; const monorepoRootPath = path.join(__dirname, '../../..'); const packages = utils.getTopologicallySortedPackages(monorepoRootPath); const installablePackages = _.filter( |