allow AGORA_PATH to be set via env var
This commit is contained in:
parent
8ee3f92b9f
commit
e7c64d374c
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
import os
|
import os
|
||||||
import getpass
|
import getpass
|
||||||
|
|
||||||
AGORA_PATH = os.path.join('/home', getpass.getuser(), 'agora')
|
AGORA_PATH = os.getenv("AGORA_PATH", os.path.join("/home", getpass.getuser(), "agora"))
|
||||||
AGORA_VERSION = '0.5.3'
|
AGORA_VERSION = '0.5.3'
|
||||||
|
|
||||||
# With trailing slash.
|
# With trailing slash.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue