96e7ddd3ea
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
16 lines
230 B
Python
Executable File
16 lines
230 B
Python
Executable File
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import sys
|
|
|
|
here = sys.path[0]
|
|
if here != '/usr/bin':
|
|
sys.path.insert(0, os.path.dirname(here))
|
|
|
|
from pungi import ostree
|
|
|
|
|
|
if __name__ == '__main__':
|
|
ostree.main()
|