Skip to content

Commit b3ccd74

Browse files
committed
changing upload size limit from 200 to 400
1 parent 85ad1cf commit b3ccd74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/utils/uploader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ function upload_zip(lt_config, file_name, prefix = "project", env = "prod") {
4949
let fileSizeInBytes = stats.size;
5050
//Convert the file size to megabytes (optional)
5151
let fileSizeInMegabytes = fileSizeInBytes / 1000000.0;
52-
if (fileSizeInMegabytes > 200) {
52+
if (fileSizeInMegabytes > 400) {
5353
reject("File Size exceed 200 MB limit");
5454
return;
5555
}

0 commit comments

Comments
 (0)