Skip to content

Commit

Permalink
update devcontainer on create process
Browse files Browse the repository at this point in the history
  • Loading branch information
shimizukawa committed Jun 27, 2024
1 parent 2ae1b3c commit a116dff
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .devcontainer/on_create_command.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#!/bin/sh
# setup

sudo pip install -U pip setuptools wheel setuptools_scm
sudo pip install -r requirements-dev.txt
set -ex

# Install Transifex CLI tool
pip install -U pip setuptools wheel setuptools_scm
pip install -r requirements-dev.txt

# Install Transifex CLI tool into /usr/local/bin
# refer to Installation instructions https://github.com/transifex/cli#installation

(cd `mktemp -d` && curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash && sudo mv ./tx /usr/local/bin )
(cd /usr/local/bin && curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | sudo bash)

0 comments on commit a116dff

Please sign in to comment.