fix: size on bundled stat

This commit is contained in:
calebboyd
2019-02-21 22:33:44 -06:00
parent 72d9dfebf6
commit b022cd525d
+1 -1
View File
@@ -99,7 +99,7 @@ function shimFs(binary: NexeBinary, fs: any = require('fs')) {
return createStat({ mode, size: 0 })
}
if (manifest[key]) {
return createStat({ size: manifest[key] })
return createStat({ size: manifest[key][1] })
}
}