Allow Python to be set from environment variable
This commit is contained in:
parent
27c076fc5b
commit
02e58c239f
1 changed files with 3 additions and 0 deletions
|
@ -109,6 +109,9 @@ class Config
|
|||
if (getenv('CONVERT')) {
|
||||
$this->convert = (bool) getenv('CONVERT');
|
||||
}
|
||||
if (getenv('PYTHON')) {
|
||||
$this->python = getenv('PYTHON');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue