From 853f6f3719b81c510d602e19df0199f78d1a0121 Mon Sep 17 00:00:00 2001 From: ll7 Date: Mon, 3 Jun 2024 11:48:02 +0000 Subject: [PATCH] chore: Update devcontainer postCreate.sh script This commit updates the postCreate.sh script in the .devcontainer directory. It removes the unnecessary shebang line and adds a command to print the current working directory. Additionally, it updates the command to initialize and update submodules and installs the required Python packages specified in the requirements.txt files. These changes improve the setup process for the devcontainer and ensure that all dependencies are properly installed. --- .devcontainer/postCreate.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.devcontainer/postCreate.sh b/.devcontainer/postCreate.sh index 5f0c76f..4de1125 100755 --- a/.devcontainer/postCreate.sh +++ b/.devcontainer/postCreate.sh @@ -1,6 +1,5 @@ -#!/bin/bash - ## This script is run after the devcontainer is created. It installs the necessary dependencies for the project. +pwd git submodule update --init --recursive pip install -r ./requirements.txt pip install -r ./fast-pysf/requirements.txt