From 85d14f3e12055e871a15cbc22e2c6665b2001fde Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sun, 21 Feb 2021 18:06:35 +0100 Subject: [PATCH] Install oragono in ~/go/bin and update $PATH instructions. --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a1654d9..7dd5000 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,11 @@ pip3 install --user -r requirements.txt pyxmpp2-scram 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 @@ -63,7 +64,7 @@ cd /tmp/ git clone https://github.com/oragono/oragono.git cd oragono/ make build -export PATH=/tmp/oragono:$PATH +make install cd ~/irctest pytest --controller irctest.controllers.oragono -k 'not deprecated' ```