diff --git a/dist/setup/index.js b/dist/setup/index.js index b664896b..60ad8585 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -63920,7 +63920,7 @@ class PoetryCache extends cache_distributor_1.default { const lines = stdout.trim().split('\n'); const config = {}; for (let line of lines) { - line = line.replace(/#.*$/, ''); + line = line.replace(/#.*$/gm, ''); const [key, value] = line.split('=').map(part => part.trim()); config[key] = JSON.parse(value); }