Allow Python to be set from environment variable

This commit is contained in:
Pierre Rudloff 2016-12-22 13:46:31 +01:00
parent 27c076fc5b
commit 02e58c239f
1 changed files with 3 additions and 0 deletions

View File

@ -109,6 +109,9 @@ class Config
if (getenv('CONVERT')) {
$this->convert = (bool) getenv('CONVERT');
}
if (getenv('PYTHON')) {
$this->python = getenv('PYTHON');
}
}
/**