8 lines
127 B
Python
8 lines
127 B
Python
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
def version():
|
||
|
|
if os.getenv('VERSION'):
|
||
|
|
return os.getenv('VERSION')
|
||
|
|
return 'release-9-72-g3e1c132'
|