chore(fs/outputStream): remove incorrect await

This commit is contained in:
Julien Fontanet 2021-04-30 22:45:53 +02:00
parent b8edca53cb
commit 8bee0925d0

View File

@ -214,7 +214,7 @@ export default class RemoteHandlerAbstract {
pipeline(input, checksumStream, noop)
input = checksumStream
}
await this._outputStream(path, await input, {
await this._outputStream(path, input, {
dirMode,
validator,
})