527e098821
Signed-off-by: Dean Troyer <dtroyer@gmail.com>
17 lines
234 B
Python
Executable File
17 lines
234 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
"""
|
|
Copyright (c) 2014 Wind River Systems, Inc.
|
|
|
|
SPDX-License-Identifier: Apache-2.0
|
|
|
|
"""
|
|
|
|
import sys
|
|
|
|
from cgcs_patch.patch_functions import patch_build
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(patch_build())
|
|
|