Pārlūkot izejas kodu

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

22mSqRi 5 mēneši atpakaļ
vecāks
revīzija
32ebea91ff
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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