mirror of
https://github.com/chatmail/relay.git
synced 2026-05-10 16:04:37 +00:00
Do not attmpt to activate venv from scripts/initenv.sh
If you run it as scripts/initenv.sh, activating venv is useless as bash will exit immediately afterwards. If you `source` it as suggested by README.md, `set -e` will set the flag for the current shell and your shell will exit as soon as some command returns non-zero status, e.g. cmdeploy fails or you simply do `ls /foo/bar/baz` and `ls` complains that `/foo/bar/baz` does not exist.
This commit is contained in:
@@ -4,6 +4,3 @@ python3 -m venv venv
|
||||
|
||||
venv/bin/pip install -e chatmaild
|
||||
venv/bin/pip install -e cmdeploy
|
||||
|
||||
source venv/bin/activate
|
||||
echo activated 'venv' python virtualenv environment containing "cmdeploy" tool
|
||||
|
||||
Reference in New Issue
Block a user