Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed git checkout command in README (Issue #512) #513

Merged
merged 3 commits into from
Mar 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 1.8.0 # you may choose specific release version also
cd installer/ansible
Mys7erio marked this conversation as resolved.
Show resolved Hide resolved
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
```
Expand Down Expand Up @@ -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 1.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
```
Expand Down