mirror of
https://github.com/powerline/powerline.git
synced 2025-07-27 15:54:30 +02:00
Allow specifying path to libvterm from environment
Uses POWERLINE_LIBVTERM environment variable.
This commit is contained in:
parent
8629999379
commit
0a0af212ad
@ -106,7 +106,7 @@ def main(attempts=3):
|
|||||||
if os.path.exists('tests/bot-ci/deps/libvterm/libvterm.so'):
|
if os.path.exists('tests/bot-ci/deps/libvterm/libvterm.so'):
|
||||||
lib = 'tests/bot-ci/deps/libvterm/libvterm.so'
|
lib = 'tests/bot-ci/deps/libvterm/libvterm.so'
|
||||||
else:
|
else:
|
||||||
lib = 'libvterm.so'
|
lib = os.environ.get('POWERLINE_LIBVTERM', 'libvterm.so')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
p = ExpectProcess(
|
p = ExpectProcess(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user