-
Notifications
You must be signed in to change notification settings - Fork 25
/
install.sh
executable file
·112 lines (96 loc) · 3.35 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#!/bin/bash
#
# Script definetely inspired by
#
# https://github.com/nvm-sh/nvm/blob/master/install.sh
# https://github.com/heroku/cli/blob/master/install-standalone.sh
#
{
echoerr() { echo "$@" 1>&2; }
try_profile() {
if [ -z "${1-}" ] || [ ! -f "${1}" ]; then
return 1
else
echo $1
fi
}
find_profile() {
local DETECTED_PROFILE
if [ "${SHELL#*bash}" != "$SHELL" ]; then
if [ -f "$HOME/.bashrc" ]; then
DETECTED_PROFILE="$HOME/.bashrc"
elif [ -f "$HOME/.bash_profile" ]; then
DETECTED_PROFILE="$HOME/.bash_profile"
fi
elif [ "${SHELL#*zsh}" != "$SHELL" ]; then
if [ -f "$HOME/.zshrc" ]; then
DETECTED_PROFILE="$HOME/.zshrc"
fi
fi
if [ -z "$DETECTED_PROFILE" ]; then
for EACH_PROFILE in ".profile" ".bashrc" ".bash_profile" ".zshrc"; do
if DETECTED_PROFILE="$(try_profile "${HOME}/${EACH_PROFILE}")"; then
break
fi
done
fi
if [ -n "$DETECTED_PROFILE" ]; then
echo "$DETECTED_PROFILE"
else
return 1
fi
}
if [ -f tx ]; then
echo "Filename 'tx' already exists. Please remove it or try running the script from a different folder"
exit 1
fi
# Try to figure out the version needed to download for the specific system
if [ "$(uname)" == "Darwin" ]; then
OS=darwin
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
OS=linux
else
echoerr "This installer is only supported on Linux and MacOS"
exit 1
fi
ARCH="$(uname -m)"
if [ "$ARCH" == "x86_64" ]; then
ARCH=amd64
elif [[ "$ARCH" == "aarch"* ]] || [[ "$ARCH" == "arm"* ]]; then
ARCH=arm64
elif [[ "$ARCH" == "i386" ]]; then
ARCH=386
else
echoerr "unsupported arch: $ARCH"
exit 1
fi
DEFAULT_TX_VERSION=latest
TX_VERSION="${1:-$DEFAULT_TX_VERSION}"
# Try to download the TX version from github releases
# https://github.com/transifex/cli/releases/download/v1.4.0/tx-darwin-arm64.tar.gz
if [ $TX_VERSION == "latest" ]; then
URL="https://github.com/transifex/cli/releases/latest/download/tx-$OS-$ARCH.tar.gz"
else
URL="https://github.com/transifex/cli/releases/download/$TX_VERSION/tx-$OS-$ARCH.tar.gz"
fi
echo -e "** Installing CLI from $URL\n"
if tar --version | grep -q 'gnu'
then
curl -L "$URL" | tar xz --skip-old-files
else
curl -L "$URL" | tar kxz
fi
# Try to add tx to PATH
echo -e "\n** Adding CLI to PATH"
DETECTED_PROFILE=$(find_profile)
if [ -n "$DETECTED_PROFILE" ]; then
echo "export PATH=\"$PWD:\$PATH\"" >> "$DETECTED_PROFILE"
echo "** export PATH=\"$PWD:\$PATH\" was added to $DETECTED_PROFILE. Please restart your terminal to have access to 'tx' from any path."
else
echo "** Profile not found, we tried for .profile, .bashrc, .bash_profile, .zshrc"
echo "** Please add this line to the correct file if you want to access 'tx' from any path."
echo -e "\nexport PATH=\"$PWD:\$PATH\"\n"
fi
echo -e "\n** If everything went fine you should see the Transifex CLI version in the following line."
./tx -v
}