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

Update start-nodes.md with working sudo syntax #1141

Merged
Merged
Changes from 1 commit
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
Next Next commit
Update start-nodes.md with working sudo syntax
This fixes a line that will error out with permission denied due to the appending / redirect of output not having sudo, instead running it as an encapsulated sudo command

 Author:    Kevin <kevin@kiva.org>

Signed-off-by: Kevin OBrien <kevin@kiva.org>
  • Loading branch information
coderintherye committed Jan 29, 2019
commit 219373e4615963d77025b960a9d9c59fabde413d
2 changes: 1 addition & 1 deletion docs/start-nodes.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In order to run your own Network, you need to do the following for each Node:
- A recommended way for ubuntu is installing from deb packages
```
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 68DB5E88
sudo echo "deb https://repo.sovrin.org/deb xenial stable" >> /etc/apt/sources.list
sudo bash -c 'echo "deb https://repo.sovrin.org/deb xenial stable" >> /etc/apt/sources.list'
sudo apt-get update
sudo apt-get install indy-node
```
Expand Down