forked from imjerrybao/apex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
55 lines (47 loc) · 1.61 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
#!/bin/sh
install () {
set -eu
UNAME=$(uname)
if [ "$UNAME" != "Linux" -a "$UNAME" != "Darwin" -a "$UNAME" != "OpenBSD" ] ; then
echo "Sorry, OS not supported: ${UNAME}. Download binary from https://github.com/apex/apex/releases"
exit 1
fi
if [ "$UNAME" = "Darwin" ] ; then
OSX_ARCH=$(uname -m)
if [ "${OSX_ARCH}" = "x86_64" ] ; then
PLATFORM="darwin_amd64"
else
echo "Sorry, architecture not supported: ${OSX_ARCH}. Download binary from https://github.com/apex/apex/releases"
exit 1
fi
elif [ "$UNAME" = "Linux" ] ; then
LINUX_ARCH=$(uname -m)
if [ "${LINUX_ARCH}" = "i686" ] ; then
PLATFORM="linux_386"
elif [ "${LINUX_ARCH}" = "x86_64" ] ; then
PLATFORM="linux_amd64"
else
echo "Sorry, architecture not supported: ${LINUX_ARCH}. Download binary from https://github.com/apex/apex/releases"
exit 1
fi
elif [ "$UNAME" = "OpenBSD" ] ; then
OPENBSD_ARCH=$(uname -m)
if [ "${OPENBSD_ARCH}" = "amd64" ] ; then
PLATFORM="openbsd_amd64"
else
echo "Sorry, architecture not supported: ${OPENBSD_ARCH}. Download binary from https://github.com/apex/apex/releases"
exit 1
fi
fi
LATEST=$(curl -s https://api.github.com/repos/apex/apex/tags | grep -Eo '"name":.*?[^\\]",' | head -n 1 | sed 's/[," ]//g' | cut -d ':' -f 2)
URL="https://github.com/apex/apex/releases/download/$LATEST/apex_$PLATFORM"
DEST=/usr/local/bin/apex
if [ -z $LATEST ] ; then
echo "Error requesting. Download binary from https://github.com/apex/apex/releases"
exit 1
else
curl -sL https://github.com/apex/apex/releases/download/$LATEST/apex_$PLATFORM -o $DEST
chmod +x $DEST
fi
}
install