Skip to content

Commit

Permalink
Use \n instead of os.EOL
Browse files Browse the repository at this point in the history
Co-authored-by: Brian Cristante <33549821+brcrista@users.noreply.github.com>
  • Loading branch information
patrick91 and brcrista committed Mar 30, 2022
1 parent 7a37d78 commit 6c31eb3
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 6c31eb3

Please sign in to comment.