Procházet zdrojové kódy

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

22mSqRi před 5 měsíci
rodič
revize
32ebea91ff
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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