16 lines
250 B
Plaintext
16 lines
250 B
Plaintext
|
#!/usr/bin/env python2
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
here = sys.path[0]
|
||
|
if here != '/usr/bin':
|
||
|
# Git checkout
|
||
|
sys.path[0] = os.path.dirname(here)
|
||
|
|
||
|
import pungi.createiso
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
pungi.createiso.main()
|