npm-pkgbuild 11.5.12 → 11.5.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "11.5.12",
3
+ "version": "11.5.13",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -102,8 +102,6 @@ export class ARCH extends Packager {
102
102
  _prepared = false;
103
103
  }
104
104
  }
105
- // console.log("ARCH", variant.arch, _architecture,
106
- // _prepared, (variant.arch === undefined || variant.arch === _architecture));
107
105
 
108
106
  return _prepared && (variant.arch === undefined || variant.arch === _architecture);
109
107
  }
@@ -191,7 +189,7 @@ package() {
191
189
  PACKAGER = person(properties.contributors);
192
190
  }
193
191
 
194
- const makepkg = await execa("makepkg", ["-f", "-e"], {
192
+ const makepkg = await execa("makepkg", ["-c", "-f", "-e"], {
195
193
  cwd: staging,
196
194
  env: { PKGDEST: destination, PACKAGER }
197
195
  });