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