-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
install.sh
98 lines (78 loc) Β· 2.66 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
#!/bin/bash
readonly MAGENTA="$(tput setaf 5 2>/dev/null || echo '')"
readonly GREEN="$(tput setaf 2 2>/dev/null || echo '')"
readonly CYAN="$(tput setaf 6 2>/dev/null || echo '')"
readonly NO_COLOR="$(tput sgr0 2>/dev/null || echo '')"
# Define the release information
RELEASE_URL="https://api.github.com/repos/tsirysndr/crosup/releases/latest"
# Determine the operating system
OS=$(uname -s)
if [ "$OS" = "Darwin" ]; then
# Determine the CPU architecture
ARCH=$(uname -m)
if [ "$ARCH" = "arm64" ]; then
ASSET_NAME="_aarch64-apple-darwin.tar.gz"
else
ASSET_NAME="_x86_64-apple-darwin.tar.gz"
fi
elif [ "$OS" = "Linux" ]; then
# Determine the CPU architecture
ARCH=$(uname -m)
if [ "$ARCH" = "aarch64" ]; then
ASSET_NAME="_aarch64-unknown-linux-gnu.tar.gz"
elif [ "$ARCH" = "x86_64" ]; then
ASSET_NAME="_x86_64-unknown-linux-gnu.tar.gz"
else
echo "Unsupported architecture: $ARCH"
exit 1
fi
else
echo "Unsupported operating system: $OS"
exit 1
fi
# Retrieve the download URL for the desired asset
DOWNLOAD_URL=$(curl -sSL $RELEASE_URL | grep -o "browser_download_url.*$ASSET_NAME\"" | cut -d ' ' -f 2)
ASSET_NAME=$(basename $DOWNLOAD_URL)
# Define the installation directory
INSTALL_DIR="/usr/local/bin"
DOWNLOAD_URL=`echo $DOWNLOAD_URL | tr -d '\"'`
# Download the asset
curl -SL $DOWNLOAD_URL -o /tmp/$ASSET_NAME
# Extract the asset
tar -xzf /tmp/$ASSET_NAME -C /tmp
# Set the correct permissions for the binary
chmod +x /tmp/crosup
# Move the extracted binary to the installation directory
# use sudo if OS is Linux
if [ "$OS" = "Linux" ]; then
if command -v sudo >/dev/null 2>&1; then
sudo mv /tmp/crosup $INSTALL_DIR
else
mv /tmp/crosup $INSTALL_DIR
fi
else
mv /tmp/crosup $INSTALL_DIR
fi
# Clean up temporary files
rm /tmp/$ASSET_NAME
echo "Installation completed! π"
cat << EOF
${CYAN}
______ __ __
/ ____/________ _____/ / / /___
/ / / ___/ __ \/ ___/ / / / __ \\
/ /___/ / / /_/ (__ ) /_/ / /_/ /
\____/_/ \____/____/\____/ .___/
/_/
${NO_COLOR}
Quickly setup your development environment on your new Chromebook/ChromeOS π β¨
${GREEN}https://github.com/tsirysndr/crosup${NO_COLOR}
Please file an issue if you encounter any problems!
===============================================================================
EOF
# Check if the "--skip" argument was provided
if [[ "$@" != *--skip* ]]; then
crosup install --ask
else
printf "%s\n" "Run ${GREEN}'crosup install'${NO_COLOR} to install your development environment"
fi