mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
1b13139709
Also, re-run the latest trunnel. Closes ticket 13242
10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test "x$TRUNNEL_PATH" != "x"; then
|
|
PYTHONPATH="${TRUNNEL_PATH}:${PYTHONPATH}"
|
|
export PYTHONPATH
|
|
fi
|
|
|
|
python -m trunnel ./src/trunnel/*.trunnel
|
|
|