mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
demo: check if we are in a virtualenv before overriding PYTHONPATH (#12916)
This commit is contained in:
parent
7f92ac4c1c
commit
1fd1856afc
1
changelog.d/12916.misc
Normal file
1
changelog.d/12916.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Check if we are in a virtual environment before overriding the `PYTHONPATH` environment variable in the demo script.
|
@ -6,11 +6,12 @@ CWD=$(pwd)
|
|||||||
|
|
||||||
cd "$DIR/.." || exit
|
cd "$DIR/.." || exit
|
||||||
|
|
||||||
|
# Do not override PYTHONPATH if we are in a virtual env
|
||||||
|
if [ "$VIRTUAL_ENV" = "" ]; then
|
||||||
PYTHONPATH=$(readlink -f "$(pwd)")
|
PYTHONPATH=$(readlink -f "$(pwd)")
|
||||||
export PYTHONPATH
|
export PYTHONPATH
|
||||||
|
|
||||||
|
|
||||||
echo "$PYTHONPATH"
|
echo "$PYTHONPATH"
|
||||||
|
fi
|
||||||
|
|
||||||
# Create servers which listen on HTTP at 808x and HTTPS at 848x.
|
# Create servers which listen on HTTP at 808x and HTTPS at 848x.
|
||||||
for port in 8080 8081 8082; do
|
for port in 8080 8081 8082; do
|
||||||
|
Loading…
Reference in New Issue
Block a user