buildwithnexus 0.3.2 → 0.3.3
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.js +2 -0
- package/dist/nexus-release.tar.gz +0 -0
- package/package.json +1 -1
package/dist/bin.js
CHANGED
|
@@ -1305,6 +1305,8 @@ var phases = [
|
|
|
1305
1305
|
name: "VM Provisioning",
|
|
1306
1306
|
run: async (ctx, spinner) => {
|
|
1307
1307
|
const { config, keys, tarballPath } = ctx;
|
|
1308
|
+
const pinPath = path6.join(process.env.HOME || "~", ".buildwithnexus", "ssh", "vm_host_key.pin");
|
|
1309
|
+
if (fs6.existsSync(pinPath)) fs6.unlinkSync(pinPath);
|
|
1308
1310
|
spinner.text = "Waiting for SSH...";
|
|
1309
1311
|
spinner.start();
|
|
1310
1312
|
const sshReady = await waitForSsh(config.sshPort);
|
|
Binary file
|