Преглед изворни кода

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

22mSqRi пре 8 месеци
родитељ
комит
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