@aipm-registry/cli 0.1.7 → 0.1.8

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/dist/bin.cjs CHANGED
@@ -8033,7 +8033,7 @@ async function packStagedFiles(root) {
8033
8033
  const tempDir = await (0, import_promises6.mkdtemp)((0, import_node_path6.join)((0, import_node_os.tmpdir)(), "aipm-publish-stage-"));
8034
8034
  try {
8035
8035
  await copyStagedFiles(root, tempDir);
8036
- return packDirectory(tempDir);
8036
+ return await packDirectory(tempDir);
8037
8037
  } finally {
8038
8038
  await (0, import_promises6.rm)(tempDir, { recursive: true, force: true });
8039
8039
  }