# HG changeset patch # User drewp@bigasterisk.com # Date 1683577782 25200 # Node ID 845ba03729f9fe5acd43325bc92a0839c1c1e8d1 # Parent 27fad20dc10188f0a06a38ed0733cec4ba1375fd fix registry path diff -r 27fad20dc101 -r 845ba03729f9 tasks.py --- 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):