-
Notifications
You must be signed in to change notification settings - Fork 94
/
install.sh
executable file
·225 lines (185 loc) · 4.56 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#!/usr/bin/env sh
set -eu
if [ -n "${GITHUB_ACTIONS-}" ]; then
set -x
fi
# Check pipefail support in a subshell, ignore if unsupported
# shellcheck disable=SC3040
(set -o pipefail 2> /dev/null) && set -o pipefail
help() {
cat <<'EOF'
Install a binary released on GitHub
USAGE:
install.sh [options]
FLAGS:
-h, --help Display this message
-f, --force Force overwriting an existing binary
OPTIONS:
--repo REPO Github Repository to install the binary from [default: dora-rs]
--bin BIN Name of the binary to install [default: dora]
--tag TAG Tag (version) of the bin to install, defaults to latest release
--to LOCATION Where to install the binary [default: ~/.dora/bin]
--target TARGET
EOF
}
say() {
echo "install: $*" >&2
}
err() {
if [ -n "${td-}" ]; then
rm -rf "$td"
fi
say "error: $*"
exit 1
}
need() {
if ! command -v "$1" > /dev/null 2>&1; then
err "need $1 (command not found)"
fi
}
download() {
url="$1"
output="$2"
if command -v curl > /dev/null; then
curl --proto =https --tlsv1.2 -sSfL "$url" "-o$output"
else
wget --https-only --secure-protocol=TLSv1_2 --quiet "$url" "-O$output"
fi
}
force=false
while test $# -gt 0; do
case $1 in
--help | -h)
help
exit 0
;;
--repo)
repo=$2
shift
;;
--bin)
bin=$2
shift
;;
--tag)
tag=$2
shift
;;
--target)
target=$2
shift
;;
--to)
dest=$2
shift
;;
*)
say "error: unrecognized argument '$1'. Usage:"
help
exit 1
;;
esac
shift
done
if [ -z "${repo-}" ]; then
repo="dora-rs"
fi
if [ -z "${bin-}" ]; then
bin="dora"
fi
url=https://github.com/$repo/$bin
releases=$url/releases
command -v curl > /dev/null 2>&1 ||
command -v wget > /dev/null 2>&1 ||
err "need wget or curl (command not found)"
need mkdir
need mktemp
if [ -z "${tag-}" ]; then
need grep
need cut
fi
if [ -z "${target-}" ]; then
need cut
fi
if [ -z "${dest-}" ]; then
dest="$HOME/.dora/bin"
fi
if [ -z "${tag-}" ]; then
tag=$(
download https://api.github.com/repos/$repo/$bin/releases/latest - |
grep tag_name |
cut -d'"' -f4
)
fi
if [ -z "${target-}" ]; then
# bash compiled with MINGW (e.g. git-bash, used in github windows runners),
# unhelpfully includes a version suffix in `uname -s` output, so handle that.
# e.g. MINGW64_NT-10-0.19044
kernel=$(uname -s | cut -d- -f1)
uname_target="$(uname -m)-$kernel"
case $uname_target in
aarch64-Linux) target=aarch64-unknown-linux-musl;;
arm64-Darwin) target=aarch64-apple-darwin;;
armv7l-Linux) target=armv7-unknown-linux-musleabihf;;
x86_64-Darwin) target=x86_64-apple-darwin;;
x86_64-Linux) target=x86_64-unknown-linux-gnu;;
*)
# shellcheck disable=SC2016
err 'Could not determine target from output of `uname -m`-`uname -s`, please use `--target`:' "$uname_target"
;;
esac
fi
case $target in
*) extension=zip; need unzip;;
esac
archive="$releases/download/$tag/$bin-$tag-$target.$extension"
say "Repository: $url"
say "Bin: $bin"
say "Tag: $tag"
say "Target: $target"
say "Destination: $dest"
say "Archive: $archive"
td=$(mktemp -d || mktemp -d -t tmp)
if [ "$extension" = "zip" ]; then
download "$archive" "$td/$bin.zip"
unzip -d "$td" "$td/$bin.zip"
else
download "$archive" - | tar -C "$td" -xz
fi
echo "Placing dora-rs cli in $dest"
if [ -e "$dest/$bin" ] && [ "$force" = false ]; then
echo " Replacing \`$dest/$bin\` with downloaded version"
cp "$td/$bin" "$dest/$bin"
chmod 755 "$dest/$bin"
else
mkdir -p "$dest"
cp "$td/$bin" "$dest/$bin"
chmod 755 "$dest/$bin"
echo ""
fi
if [ "$SHELL" = "/bin/bash" ]; then
if ! grep -q "$dest" ~/.bashrc; then
echo "Adding $dest to PATH in ~/.bashrc"
echo "export PATH=\$PATH:$dest" >> ~/.bashrc
echo "Path added to ~/.bashrc."
echo "Please reload with:"
echo " source ~/.bashrc"
else
echo "$dest is already in the PATH in ~/.bashrc"
fi
elif [ "$SHELL" = "/bin/zsh" ]; then
if ! grep -q "$dest" ~/.zshrc; then
echo "Adding $dest to PATH in ~/.zshrc"
echo "export PATH=\$PATH:$dest" >> ~/.zshrc
echo "Path added to ~/.zshrc."
echo "Please reload with:"
echo " source ~/.zshrc"
else
echo "$dest is already in the PATH in ~/.zshrc"
fi
else
echo "Unsupported shell: $SHELL"
echo "Please add the following to your shell's configuration file manually:"
echo " export PATH=\$PATH:$dest"
fi
rm -rf "$td"