Skip to content
Prev Previous commit
Next Next commit
Use \n instead of os.EOL
Co-authored-by: Brian Cristante <[email protected]>
  • Loading branch information
patrick91 and brcrista authored Mar 30, 2022
commit 6c31eb3fc78f87d417c5590abb7825859b6ae048
2 changes: 1 addition & 1 deletion src/cache-distributions/poetry-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class PoetryCache extends CacheDistributor {
);
}

const lines = stdout.trim().split(os.EOL);
const lines = stdout.trim().split('\n');

const config: any = {};

Expand Down