1
0
mirror of https://github.com/espressif/esp-idf synced 2025-03-24 16:39:12 -04:00

12 lines
261 B
Python
Raw Normal View History

#
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
#
# SPDX-License-Identifier: Apache-2.0
#
import subprocess
import sys
if __name__ == '__main__':
sys.exit(subprocess.run([sys.executable, '-m', 'espsecure'] + sys.argv[1:]).returncode)