Skip to content

Commit 461bee3

Browse files
committed
Fix evergreen upload compile error
1 parent 5a62132 commit 461bee3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/build/src/evergreen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const uploadArtifactToEvergreen = (artifact: string, awsKey: string, awsSecret:
2626
ACL: PUBLIC_READ,
2727
Bucket: BUCKET,
2828
Key: `/${project}/${revision}/${path.basename(artifact)}`,
29-
Body: fs.createReadStream(artifact);
29+
Body: fs.createReadStream(artifact)
3030
};
3131
console.log(`mongosh: uploading ${artifact} to evergreen`);
3232
return upload(uploadParams, s3);

0 commit comments

Comments
 (0)