mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: fix fetch submodule error on python3
This commit is contained in:
parent
ec8e057e4c
commit
fd481d9cdd
@ -27,6 +27,7 @@ class SubModule(object):
|
||||
|
||||
def _get_commit_id(self, path):
|
||||
output = subprocess.check_output(["git", "ls-tree", "HEAD", path])
|
||||
output = output.decode()
|
||||
# example output: 160000 commit d88a262fbdf35e5abb372280eb08008749c3faa0 components/esp_wifi/lib
|
||||
match = self.GIT_LS_TREE_OUTPUT_PATTERN.search(output)
|
||||
return match.group(1)
|
||||
|
@ -15,7 +15,7 @@ class Gitlab(object):
|
||||
config_data_from_env = os.getenv("PYTHON_GITLAB_CONFIG")
|
||||
if config_data_from_env:
|
||||
# prefer to load config from env variable
|
||||
with tempfile.NamedTemporaryFile(delete=False) as temp_file:
|
||||
with tempfile.NamedTemporaryFile("w", delete=False) as temp_file:
|
||||
temp_file.write(config_data_from_env)
|
||||
config_files = [temp_file.name]
|
||||
else:
|
||||
|
Loading…
x
Reference in New Issue
Block a user