From 3be20f6ee5e5f4a03019eb6f030d2e1fc9f8559d Mon Sep 17 00:00:00 2001 From: Tri Phuong Nguyen Date: Thu, 5 Jun 2025 18:18:52 +0700 Subject: [PATCH] fix mist-bin install instruction Cloning `https://mpr.makedeb.org/mist-bin` creates the `mist-bin/` directory, not `mist/`. The original script does not run. Changing `cd mist/` to `cd mist-bin/` fixes this. --- content/using-the-mpr/mist-the-mpr-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/using-the-mpr/mist-the-mpr-cli.md b/content/using-the-mpr/mist-the-mpr-cli.md index 6b46a7a..97a2cbd 100644 --- a/content/using-the-mpr/mist-the-mpr-cli.md +++ b/content/using-the-mpr/mist-the-mpr-cli.md @@ -59,6 +59,6 @@ To install Mist from a prebuilt binary, install the `mist-bin` package: ```sh git clone 'https://mpr.makedeb.org/mist-bin' -cd mist/ +cd mist-bin/ makedeb -si ```