From 32ebea91ff7d357c3c4e01e7c727d2e918cc092a Mon Sep 17 00:00:00 2001 From: 22mSqRi <37729945+22mSqRi@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:27:17 +0900 Subject: [PATCH] fix: fix poetry install command in devcontainer (#9507) --- .devcontainer/post_start_command.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/post_start_command.sh b/.devcontainer/post_start_command.sh index e3d5a6d59d..56e87614ba 100755 --- a/.devcontainer/post_start_command.sh +++ b/.devcontainer/post_start_command.sh @@ -1,3 +1,3 @@ #!/bin/bash -poetry install -C api \ No newline at end of file +cd api && poetry install \ No newline at end of file