-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update devcontainer on create process
- Loading branch information
1 parent
2ae1b3c
commit a116dff
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |