vmsan 0.1.0-alpha.12 → 0.1.0-alpha.13
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/README.md +2 -2
- package/dist/_chunks/errors.mjs +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -37,13 +37,13 @@ Firecracker microVM sandbox toolkit. Create, manage, and connect to isolated Fir
|
|
|
37
37
|
### 1. Install Firecracker, kernel, and rootfs
|
|
38
38
|
|
|
39
39
|
```bash
|
|
40
|
-
curl -fsSL https://
|
|
40
|
+
curl -fsSL https://vmsan.dev/install | bash
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
To uninstall:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
curl -fsSL https://
|
|
46
|
+
curl -fsSL https://vmsan.dev/install | bash -s -- --uninstall
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
This downloads and installs into `~/.vmsan/`:
|
package/dist/_chunks/errors.mjs
CHANGED
|
@@ -197,7 +197,7 @@ var SetupError = class extends VmsanError {
|
|
|
197
197
|
this.name = "SetupError";
|
|
198
198
|
}
|
|
199
199
|
};
|
|
200
|
-
const INSTALL_FIX = `Run the install script to set up all dependencies:\n\ncurl -fsSL https://
|
|
200
|
+
const INSTALL_FIX = `Run the install script to set up all dependencies:\n\ncurl -fsSL https://vmsan.dev/install | bash`;
|
|
201
201
|
const missingBinaryError = (binary, path) => new SetupError("ERR_SETUP_MISSING_BINARY", {
|
|
202
202
|
message: `${binary} not found at ${path}`,
|
|
203
203
|
fix: INSTALL_FIX
|
package/package.json
CHANGED