Skip to content

Commit 5fb2c83

Browse files
authored
Merge pull request #2292 from 8ball030/patch-3
[v0.19.1]: Temporarily work around deploy build command issue
2 parents c9fd6f7 + 98be855 commit 5fb2c83

File tree

1 file changed

+2
-2
lines changed
  • autonomy/deploy/generators/docker_compose

1 file changed

+2
-2
lines changed

autonomy/deploy/generators/docker_compose/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
#
4-
# Copyright 2021-2024 Valory AG
4+
# Copyright 2021-2025 Valory AG
55
#
66
# Licensed under the Apache License, Version 2.0 (the "License");
77
# you may not use this file except in compliance with the License.
@@ -444,7 +444,7 @@ def _populate_keys(self) -> None:
444444
)
445445
key = cast(List[Dict[str, str]], self.service_builder.keys)[x][PRIVATE_KEY]
446446
keys_file = path / PRIVATE_KEY_PATH_SCHEMA.format(ledger)
447-
path.mkdir()
447+
path.mkdir(parents=True)
448448
with keys_file.open(mode="w", encoding=DEFAULT_ENCODING) as f:
449449
f.write(key)
450450

0 commit comments

Comments
 (0)