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 a6c5e12 commit 9026cafCopy full SHA for 9026caf
package/src/linux/installer.ts
@@ -41,15 +41,6 @@ async function createNfpmConfig(
41
"share",
42
);
43
44
- // Calculate installed size
45
- const fileSizes = [];
46
- for await (const entry of walk(configuration.directoryInfo.pkgWorking.root)) {
47
- if (entry.isFile) {
48
- fileSizes.push((await Deno.stat(entry.path)).size);
49
- }
50
51
- const size = fileSizes.reduce((accum, target) => accum + target, 0);
52
-
53
const config: any = {
54
name: configuration.productName.toLowerCase(),
55
version: configuration.version,
0 commit comments