3446103e24
the #!/usr/bin/env is not recommended for ensuring we get the correct auto-dependency generation. Change-Id: I87fdf44d38496ba2ff23e2f2f5836943e790f0c2 Signed-off-by: Saul Wold <sgw@linux.intel.com>
17 lines
207 B
Python
Executable File
17 lines
207 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
"""
|
|
Copyright (c) 2014 Wind River Systems, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
from cgcs_patch.patch_controller import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|