certops 1.0.12 → 1.0.14

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.
Files changed (2) hide show
  1. package/dist/files.js +2 -2
  2. package/package.json +1 -1
package/dist/files.js CHANGED
@@ -26,9 +26,9 @@ export async function saveZip(certName, zipBuffer) {
26
26
  }
27
27
  const paths = {};
28
28
  for (const { key, zipName, mode } of filemap) {
29
- const data = entries[`${zipDirName}/${zipName}`];
29
+ const data = entries[zipName];
30
30
  if (!data)
31
- throw new Error(`ZIP missing expected file: ${zipDirName}/${zipName}`);
31
+ throw new Error(`ZIP missing expected file: ${zipName}`);
32
32
  const filePath = join(dir, zipName);
33
33
  paths[key] = filePath;
34
34
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "certops",
3
- "version": "1.0.12",
3
+ "version": "1.0.14",
4
4
  "description": "SSL Pilot CLI — download and manage your SSL certificates",
5
5
  "type": "module",
6
6
  "files": [