We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 397252c commit 3f82819Copy full SHA for 3f82819
dist/setup/index.js
@@ -63920,7 +63920,7 @@ class PoetryCache extends cache_distributor_1.default {
63920
const lines = stdout.trim().split('\n');
63921
const config = {};
63922
for (let line of lines) {
63923
- line = line.replace(/#.*$/, '');
+ line = line.replace(/#.*$/gm, '');
63924
const [key, value] = line.split('=').map(part => part.trim());
63925
config[key] = JSON.parse(value);
63926
}
src/cache-distributions/poetry-cache.ts
@@ -58,7 +58,7 @@ class PoetryCache extends CacheDistributor {
58
const config: any = {};
59
60
61
62
63
64
0 commit comments