diskimage-builder/diskimage_builder/lib/element-info.py
Ian Wienand 6f73e123d0 Remove entry-point for element-info
This is really an internal dib tool.  Move it to the lib directory,
and call it with the python we are running under.

This is one less reason to require the virtualenv to be activated when
you run 'disk-image-create'.

Change-Id: Id689683a0b1fdcb446b04ba967284a216133d743
2020-11-09 16:39:35 +11:00

8 lines
118 B
Python

import sys
from diskimage_builder.element_dependencies import main
if __name__ == "__main__":
sys.exit(main())