From df11f9b4323bcd7d90b5aa8fcc77f526e845f610 Mon Sep 17 00:00:00 2001 From: naskya Date: Fri, 21 Jun 2024 02:14:32 +0900 Subject: [PATCH] fix url --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e3d3fbb..0b7803d 100644 --- a/README.md +++ b/README.md @@ -9,43 +9,43 @@ # curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash # Install pre-built executable -cargo binstall --locked --git https://firefish.dev/firefish-cli.git +cargo binstall --locked --git https://firefish.dev/firefish/firefish-cli.git ``` You can update the package using the same command. ```sh -cargo binstall --locked --git https://firefish.dev/firefish-cli.git +cargo binstall --locked --git https://firefish.dev/firefish/firefish-cli.git ``` ### Install from source ```sh # Build from source -cargo install --locked --git https://firefish.dev/firefish-cli.git +cargo install --locked --git https://firefish.dev/firefish/firefish-cli.git ``` You can update the package using the same command. ```sh -cargo install --locked --git https://firefish.dev/firefish-cli.git +cargo install --locked --git https://firefish.dev/firefish/firefish-cli.git ``` ### Use pre-built OCI image -You can also use `registry.firefish.dev/firefish-cli` container image. +You can also use `registry.firefish.dev/firefish/firefish-cli` container image. Please replace `fishctl ___` commands with ```sh docker run -it --rm --volume "$(pwd)":/firefish \ - registry.firefish.dev/firefish-cli \ + registry.firefish.dev/firefish/firefish-cli \ fishctl ___ # or podman run -it --rm --volume "$(pwd)":/firefish \ - registry.firefish.dev/firefish-cli \ + registry.firefish.dev/firefish/firefish-cli \ fishctl ___ ``` @@ -55,13 +55,13 @@ If you are using a container network (which is typically the case if you using ` ```sh docker run -it --rm --network network_name --volume "$(pwd)":/firefish \ - registry.firefish.dev/firefish-cli \ + registry.firefish.dev/firefish/firefish-cli \ fishctl ___ # or podman run -it --rm --network network_name --volume "$(pwd)":/firefish \ - registry.firefish.dev/firefish-cli \ + registry.firefish.dev/firefish/firefish-cli \ fishctl ___ ```