mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-31 19:24:33 +02:00
Merge branch 'fix/failing_create_readonly_test_on_win_v5.4' into 'release/v5.4'
fix(tools): fixed failing Win CI (tests read_only) (v5.4) See merge request espressif/esp-idf!36122
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
# SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-FileCopyrightText: 2022-2024 Espressif Systems (Shanghai) CO LTD
|
||||
# SPDX-License-Identifier: Apache-2.0
|
||||
import os
|
||||
import re
|
||||
import sys
|
||||
from shutil import copy
|
||||
from shutil import copyfile
|
||||
from shutil import copytree
|
||||
from typing import Dict
|
||||
|
||||
@@ -42,7 +42,8 @@ def create_project(target_path: str, name: str) -> None:
|
||||
copytree(
|
||||
os.path.join(os.environ['IDF_PATH'], 'tools', 'templates', 'sample_project'),
|
||||
target_path,
|
||||
copy_function=copy,
|
||||
# 'copyfile' ensures only data are copied, without any metadata (file permissions)
|
||||
copy_function=copyfile,
|
||||
dirs_exist_ok=True,
|
||||
)
|
||||
main_folder = os.path.join(target_path, 'main')
|
||||
@@ -55,7 +56,8 @@ def create_component(target_path: str, name: str) -> None:
|
||||
copytree(
|
||||
os.path.join(os.environ['IDF_PATH'], 'tools', 'templates', 'sample_component'),
|
||||
target_path,
|
||||
copy_function=copy,
|
||||
# 'copyfile' ensures only data are copied, without any metadata (file permissions)
|
||||
copy_function=copyfile,
|
||||
dirs_exist_ok=True,
|
||||
)
|
||||
os.rename(os.path.join(target_path, 'main.c'), os.path.join(target_path, '.'.join((name, 'c'))))
|
||||
|
Reference in New Issue
Block a user