We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ae1b3c commit a116dffCopy full SHA for a116dff
.devcontainer/on_create_command.sh
@@ -1,9 +1,12 @@
1
+#!/bin/sh
2
# setup
3
-sudo pip install -U pip setuptools wheel setuptools_scm
4
-sudo pip install -r requirements-dev.txt
+set -ex
5
6
-# Install Transifex CLI tool
+pip install -U pip setuptools wheel setuptools_scm
7
+pip install -r requirements-dev.txt
8
+
9
+# Install Transifex CLI tool into /usr/local/bin
10
# refer to Installation instructions https://github.com/transifex/cli#installation
11
-(cd `mktemp -d` && curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash && sudo mv ./tx /usr/local/bin )
12
+(cd /usr/local/bin && curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | sudo bash)
0 commit comments