mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-12 00:29:57 +00:00
17 lines
437 B
Python
17 lines
437 B
Python
#
|
|
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
import subprocess
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
print(
|
|
"Warning: DEPRECATED: 'espefuse.py' wrapper is deprecated. "
|
|
"Please use 'espefuse' or 'python -m espefuse' instead.",
|
|
file=sys.stderr,
|
|
)
|
|
sys.exit(subprocess.run([sys.executable, '-m', 'espefuse'] + sys.argv[1:]).returncode)
|