Skip to content

Commit

Permalink
chore: Update devcontainer postCreate.sh script
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ll7 committed Jun 3, 2024
1 parent a81990d commit 853f6f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .devcontainer/postCreate.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 853f6f3

Please sign in to comment.