12 lines
260 B
Python
Raw Normal View History

#
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
#
# SPDX-License-Identifier: Apache-2.0
#
2018-01-15 09:55:00 +11:00
import subprocess
import sys
2018-12-04 13:46:48 +01:00
if __name__ == '__main__':
sys.exit(subprocess.run([sys.executable, '-m', 'kconfgen'] + sys.argv[1:]).returncode)