Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions autonomy/deploy/generators/docker_compose/base.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
# ------------------------------------------------------------------------------
#
# Copyright 2021-2024 Valory AG
# Copyright 2021-2025 Valory AG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -444,7 +444,7 @@ def _populate_keys(self) -> None:
)
key = cast(List[Dict[str, str]], self.service_builder.keys)[x][PRIVATE_KEY]
keys_file = path / PRIVATE_KEY_PATH_SCHEMA.format(ledger)
path.mkdir()
path.mkdir(parents=True)
with keys_file.open(mode="w", encoding=DEFAULT_ENCODING) as f:
f.write(key)

Expand Down
Loading