Skip to content

Commit

Permalink
- Solved issue in path.
Browse files Browse the repository at this point in the history
issue #52
  • Loading branch information
albamig committed Mar 22, 2022
1 parent 06d58a9 commit 3eeb7bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion microservice/language/python/init/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def build_deploy_playbook(path: Path) -> str:
def build_docker_compose(path: Path, microservice_name: str) -> str:
"""Build Docker Compose file content."""

db_creation_path = path.parent / "external/init/postgres/10-create-database.sql"
db_creation_path = path.parent / "external/postgres/init/10-create-database.sql"
if not db_creation_path.exists():
raise ValueError("external/postgres/init/10-create-database.sql script must exist")

Expand Down

0 comments on commit 3eeb7bf

Please sign in to comment.