We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b776fc6 commit cc65544Copy full SHA for cc65544
lib/storage/drivers/filesystem.ts
@@ -65,7 +65,7 @@ export class FilesystemStorageDriver extends StorageDriver {
65
await fs.appendFile(outputTempFilePath, buffer)
66
}
67
68
- await fs.rename(outputTempFilePath, this.addBaseFolderPrefix(opts.finalOutputObjectName))
+ await fs.copyFile(outputTempFilePath, this.addBaseFolderPrefix(opts.finalOutputObjectName))
69
70
await Promise.all([
71
this.cleanupMultipartUpload(opts.uploadId),
0 commit comments