ソースを参照

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

22mSqRi 5 ヶ月 前
コミット
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
 
-poetry install -C api
+cd api && poetry install