From d896b157e965e2acac8c87ec50dc1403d24459bb Mon Sep 17 00:00:00 2001 From: Jonathan de Jong Date: Fri, 10 Dec 2021 14:20:39 +0100 Subject: [PATCH 1/2] Update readme with right install command Fixes #5 --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aebeefd..3b35bb1 100644 --- a/README.md +++ b/README.md @@ -38,6 +38,9 @@ For the best experience, compile this toolbox locally on your server; 2. Be sure that the rust executables are on your `$PATH` 3. You may want to have a compiler and build tools installed on your system, or else cargo will complain about not being able to "link" or "compile" with `cc`. - on debian/ubuntu-based systems you can install this with `sudo apt install build-essential` -5. `cargo install --locked --git https://github.com/shadowjonathan/conduit_toolbox`\ +5. `cargo install --locked --git https://github.com/shadowjonathan/conduit_toolbox` (Plus an extra argument, see below) + - Depending on what you're trying to do, you'll have to add one more argument here + - Are you trying to install the Sled-to-Sqlite migrator? Add `--bin conduit_sled_to_sqlite` + - Are you trying to install the generic migrator? Add `--bin conduit_migrate` (updating only requires running that last line again) From e37d73f08f68732317ed20ac7785a476d465a5fa Mon Sep 17 00:00:00 2001 From: Jonathan de Jong Date: Fri, 10 Dec 2021 14:22:08 +0100 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b35bb1..bf6da6c 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ For the best experience, compile this toolbox locally on your server; - on debian/ubuntu-based systems you can install this with `sudo apt install build-essential` 5. `cargo install --locked --git https://github.com/shadowjonathan/conduit_toolbox` (Plus an extra argument, see below) - Depending on what you're trying to do, you'll have to add one more argument here - - Are you trying to install the Sled-to-Sqlite migrator? Add `--bin conduit_sled_to_sqlite` - - Are you trying to install the generic migrator? Add `--bin conduit_migrate` + - Are you trying to install the Sled-to-Sqlite migrator? Add `conduit_sled_to_sqlite` + - Are you trying to install the generic migrator? Add `conduit_migrate` (updating only requires running that last line again)