ramm 0.0.32 → 0.0.33

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/ramm.js +2 -1
  2. package/package.json +1 -1
package/dist/ramm.js CHANGED
@@ -356,8 +356,9 @@ var getServerFingerprint = async (context) => {
356
356
  return stdout.replace("localhost", context.domain);
357
357
  };
358
358
  var saveSshFingerptint = async (filePath, context) => {
359
+ const normalizedPath = normalizePath(filePath);
359
360
  const fingerprint = await getServerFingerprint(context);
360
- await writeIfNewCompletely(filePath, fingerprint);
361
+ await writeIfNewCompletely(filePath, normalizedPath);
361
362
  };
362
363
  async function createSshKey(filePath, comment) {
363
364
  printFunction(`${createSshKey.name} ${filePath}`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ramm",
3
3
  "type": "module",
4
- "version": "0.0.32",
4
+ "version": "0.0.33",
5
5
  "scripts": {
6
6
  "build": "bun build ./src/ramm.ts --target bun --outdir ./dist && cp ./src/bun.sh ./dist/bun.sh",
7
7
  "types": "tsc --project tsconfig.types.json"