Mercurial > code > home > repos > streamed-graph
changeset 142:845ba03729f9
fix registry path
author | drewp@bigasterisk.com |
---|---|
date | Mon, 08 May 2023 13:29:42 -0700 |
parents | 27fad20dc101 |
children | 5adf79d4a9f4 |
files | tasks.py |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/tasks.py Mon May 08 13:05:59 2023 -0700 +++ b/tasks.py Mon May 08 13:29:42 2023 -0700 @@ -35,7 +35,7 @@ @task def release(ctx): - ctx.run('pnpm whoami --registry https://bigasterisk.com/js') + ctx.run('pnpm whoami --registry https://bigasterisk.com/js/') diffs = ctx.run('hg status') if diffs.stdout.strip(): print(" ^^ commit these diffs first") @@ -46,7 +46,7 @@ install_to_bigasterisk_lib(ctx, 'streamed-graph.*', f'lib/streamed-graph/{v}/') # this fails with ENEEDAUTH: - #ctx.run(f'pnpm publish --registry https://bigasterisk.com/js', pty=True) + ctx.run(f'pnpm publish --registry https://bigasterisk.com/js/', pty=True) def install_to_bigasterisk_lib(ctx, distFile, libPath):