ソースを参照

fix: fix poetry install command in devcontainer (#9507)

22mSqRi 9 ヶ月 前
コミット
32ebea91ff
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1 1
      .devcontainer/post_start_command.sh

+ 1 - 1
.devcontainer/post_start_command.sh

@@ -1,3 +1,3 @@
 #!/bin/bash
 #!/bin/bash
 
 
-poetry install -C api
+cd api && poetry install