From 86d5738c9742daea2b9c2ea9aea722c4b01282e9 Mon Sep 17 00:00:00 2001 From: kkrusher Date: Wed, 7 Feb 2024 21:51:43 +0800 Subject: [PATCH] Correct the configuration to define alias in the shell --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 892d791..86c34e8 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ pip3 install -r requirements.txt ```bash # Tell your shell how to find the `fabric` client -echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' +echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc # Example of ~/.zshrc or ~/.bashrc alias fabric="~/Development/fabric/client/fabric" ``` @@ -157,9 +157,9 @@ alias fabric="~/Development/fabric/client/fabric" ```bash # Make sure you can -echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc' +echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc # Example -echo 'alias fabric="~/Development/fabric/client/fabric" >> .zshrc' +echo 'alias fabric="~/Development/fabric/client/fabric"' >> ~/.zshrc ``` ### Using the `fabric` client