From 1441145da669556ac690fa02aa5cbec74e7c24e6 Mon Sep 17 00:00:00 2001 From: Shakir Date: Fri, 3 Mar 2023 20:08:28 +0530 Subject: [PATCH 1/3] Fixed git checkout command in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9914ebf9..8c12ef62 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ Please refer [SODA documentation](https://docs.sodafoundation.io/soda-gettingsta ```bash sudo apt-get update && sudo apt-get install -y git git clone https://github.com/sodafoundation/installer.git -git checkout 1.8.0 # you may choose specific release version also +git checkout v1.8.0 # you may choose specific release version also cd installer/ansible chmod +x install_dependencies.sh && source install_dependencies.sh export PATH=$PATH:/home/$USER/.local/bin @@ -85,7 +85,7 @@ sudo -E env "PATH=$PATH" ansible-playbook site.yml -i local.hosts -v ```bash sudo apt-get update && sudo apt-get install -y git git clone https://github.com/sodafoundation/installer.git -git checkout 1.8.0 # you may choose specific release version also +git checkout v1.8.0 # you may choose specific release version also cd installer/ansible chmod +x install_dependencies.sh && source install_dependencies.sh export PATH=$PATH:/home/$USER/.local/bin From 5d4c840e695e42f85e4f037c8ca8e627de3aad22 Mon Sep 17 00:00:00 2001 From: Shakir Date: Fri, 10 Mar 2023 13:53:23 +0530 Subject: [PATCH 2/3] Moved git checkout after cd command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c12ef62..e69b2c2d 100644 --- a/README.md +++ b/README.md @@ -85,8 +85,8 @@ sudo -E env "PATH=$PATH" ansible-playbook site.yml -i local.hosts -v ```bash sudo apt-get update && sudo apt-get install -y git git clone https://github.com/sodafoundation/installer.git -git checkout v1.8.0 # you may choose specific release version also cd installer/ansible +git checkout v1.8.0 # you may choose specific release version also chmod +x install_dependencies.sh && source install_dependencies.sh export PATH=$PATH:/home/$USER/.local/bin ``` From f8722dedf4d3743eaf14042b677d2402b47407a1 Mon Sep 17 00:00:00 2001 From: Shakir Date: Mon, 13 Mar 2023 18:45:48 +0530 Subject: [PATCH 3/3] Moved git checkout after cd command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e69b2c2d..9d834ebe 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ Please refer [SODA documentation](https://docs.sodafoundation.io/soda-gettingsta ```bash sudo apt-get update && sudo apt-get install -y git git clone https://github.com/sodafoundation/installer.git -git checkout v1.8.0 # you may choose specific release version also cd installer/ansible +git checkout v1.8.0 # you may choose specific release version also chmod +x install_dependencies.sh && source install_dependencies.sh export PATH=$PATH:/home/$USER/.local/bin ```