Merge remote-tracking branch 'upstream/main'

* upstream/main:
  Fix output for prerelease version of poetry (#409)
  Update zeit/ncc to vercel/ncc (#393)
  Change PyPy version to rebuild cache
This commit is contained in:
Andrew DiLosa 2022-06-01 21:54:16 -07:00
commit 59e9c1d0b3
5 changed files with 13 additions and 14 deletions

View file

@ -58,7 +58,7 @@ class PoetryCache extends CacheDistributor {
const config: any = {};
for (let line of lines) {
line = line.replace(/#.*$/, '');
line = line.replace(/#.*$/gm, '');
const [key, value] = line.split('=').map(part => part.trim());