Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Jun 10, 2022
1 parent 70d0f30 commit 85087d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/cache/src/FSCache.js
Expand Up @@ -47,7 +47,7 @@ export class FSCache implements Cache {
setStream(key: string, stream: Readable): Promise<void> {
return new Promise((resolve, reject) => {
stream
.pipe(this.fs.createWriteStream(path.join(this.dir, key)))
.pipe(this.fs.createWriteStream(this._getCachePath(`${key}-large`)))
.on('error', reject)
.on('finish', resolve);
});
Expand Down

0 comments on commit 85087d9

Please sign in to comment.