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.
- package/dist/ramm.js +2 -1
- 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,
|
|
361
|
+
await writeIfNewCompletely(filePath, normalizedPath);
|
|
361
362
|
};
|
|
362
363
|
async function createSshKey(filePath, comment) {
|
|
363
364
|
printFunction(`${createSshKey.name} ${filePath}`);
|
package/package.json
CHANGED