Install oragono in ~/go/bin and update $PATH instructions.

This commit is contained in:
Valentin Lorentz 2021-02-21 18:06:35 +01:00 committed by Valentin Lorentz
parent 81d5715465
commit 85d14f3e12

View File

@ -27,10 +27,11 @@ pip3 install --user -r requirements.txt pyxmpp2-scram
python3 setup.py install --user python3 setup.py install --user
``` ```
Add `~/.local/bin/` to your `PATH` if it is not. Add `~/.local/bin/` (and/or `~/.local/bin/` for Oragono)
to your `PATH` if it is not.
``` ```
export PATH=$HOME/.local/bin/:$PATH export PATH=$HOME/.local/bin/:$HOME/go/bin/:$PATH
``` ```
## Test selection ## Test selection
@ -63,7 +64,7 @@ cd /tmp/
git clone https://github.com/oragono/oragono.git git clone https://github.com/oragono/oragono.git
cd oragono/ cd oragono/
make build make build
export PATH=/tmp/oragono:$PATH make install
cd ~/irctest cd ~/irctest
pytest --controller irctest.controllers.oragono -k 'not deprecated' pytest --controller irctest.controllers.oragono -k 'not deprecated'
``` ```