Skip to content

Commit

Permalink
Clarify that ln command may require sudo
Browse files Browse the repository at this point in the history
While other `pelias` commands should not be run with `sudo`, `sudo` will
generally be required to create a symbolic link in
`/usr/local/bin/pelias` as described in our quickstart script.

This change adds `sudo` to that command and clarifies that it's the only
part of the quickstart script that should use `sudo`.

Connects #214
  • Loading branch information
orangejulius committed Sep 15, 2020
1 parent 9d33500 commit b6d2e53
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ set -x
git clone https://github.com/pelias/docker.git && cd docker

# install pelias script
ln -s "$(pwd)/pelias" /usr/local/bin/pelias
# this is the _only_ setup command that should require `sudo`
sudo ln -s "$(pwd)/pelias" /usr/local/bin/pelias

# cd into the project directory
cd projects/portland-metro
Expand Down

0 comments on commit b6d2e53

Please sign in to comment.