1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-06-23 07:16:40 +02:00

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

View File

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