浏览代码

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