blob: 80a39d42476cd03de2b654cbdada33fc0c576993 (
plain) (
blame)
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
|
#!/bin/bash
# Reset
Color_Off=''
# Regular Colors
Red=''
Green=''
# Bold
BWhite=''
BGreen=''
Dim='' # White
if test -t 1; then
# Reset
Color_Off='\033[0m' # Text Reset
# Regular Colors
Red='\033[0;31m' # Red
Green='\033[0;32m' # Green
White='\033[0;37m' # White
Dim='\033[0;2m' # White
# Bold
BGreen='\033[1;32m' # Green
BWhite='\033[1;37m' # White
fi
if ! command -v unzip >/dev/null; then
echo -e "\n${Red}error${Color_Off}: unzip is required to install bun (see: https://github.com/Jarred-Sumner/bun#unzip-is-required)." 1>&2
exit 1
fi
if [ "$OS" = "Windows_NT" ]; then
echo "error: Please install bun using Windows Subsystem for Linux."
exit 1
else
case $(uname -sm) in
"Darwin x86_64") target="darwin-x64" ;;
"Darwin arm64") target="darwin-aarch64" ;;
"Linux aarch64") target="linux-aarch64" ;;
"Linux arm64") target="linux-aarch64" ;;
"Linux x86_64") target="linux-x64" ;;
*) target="linux-x64" ;;
esac
fi
if [ "$target" = "darwin-x64" ]; then
# Is it rosetta
sysctl sysctl.proc_translated >/dev/null 2>&1
if [ $? -eq 0 ]; then
target="darwin-aarch64"
echo -e "$Dim Your shell is running in Rosetta 2. Downloading bun for $target instead. $Color_Off"
fi
fi
github_repo="https://github.com/Jarred-Sumner/bun-releases-for-updater"
if [ $# -eq 0 ]; then
bun_uri="$github_repo/releases/latest/download/bun-${target}.zip"
else
bun_uri="$github_repo/releases/download/${1}/bun-${target}.zip"
fi
bun_install="${BUN_INSTALL:-$HOME/.bun}"
bin_dir="$bun_install/bin"
exe="$bin_dir/bun"
if [ ! -d "$bin_dir" ]; then
mkdir -p "$bin_dir"
if (($?)); then
echo -e "${Red}error${Color_Off}: Failed to create install directory $bin_dir" 1>&2
exit 1
fi
fi
curl --fail --location --progress-bar --output "$exe.zip" "$bun_uri"
if (($?)); then
echo -e "${Red}error${Color_Off}: Failed to download bun from $bun_uri" 1>&2
exit 1
fi
unzip -d "$bin_dir" -q -o "$exe.zip"
if (($?)); then
echo -e "${Red}error${Color_Off}: Failed to extract bun" 1>&2
exit 1
fi
mv "$bin_dir/bun-${target}/bun" "$exe"
if (($?)); then
echo -e "${Red}error${Color_Off}: Failed to extract bun" 1>&2
exit 1
fi
chmod +x "$exe"
if (($?)); then
echo -e "${Red}error${Color_Off}: Failed to set permissions on bun executable." 1>&2
exit 1
fi
rmdir $bin_dir/bun-${target}
rm "$exe.zip"
echo -e "${Green}bun was installed successfully to ${BGreen}$exe$Color_Off"
if command -v bun --version >/dev/null; then
# Install completions, but we don't care if it fails
IS_BUN_AUTO_UPDATE="true" $exe completions >/dev/null 2>&1
echo "Run 'bun --help' to get started"
exit 0
fi
if test $(basename $SHELL) == "fish"; then
# Install completions, but we don't care if it fails
IS_BUN_AUTO_UPDATE="true" SHELL="fish" $exe completions >/dev/null 2>&1
if test -f $HOME/.config/fish/config.fish; then
echo -e "\n# bun\nset -Ux BUN_INSTALL \"$bun_install\"" >>"$HOME/.config/fish/config.fish"
echo -e "set -px --path PATH \"$bin_dir\"\n" >>"$HOME/.config/fish/config.fish"
echo ""
echo -e "$Dim Added \"$bin_dir\" to \$PATH in \"\~/.config/fish/config.fish\"$Color_Off"
echo ""
echo -e "To get started, run"
echo -e "$BWhite"
echo -e " source ~/.config/fish/config.fish"
echo -e " bun --help$Color_Off"
exit 0
else
echo ""
echo "Manually add the directory to your \$HOME/.config/fish/config.fish (or similar)"
echo ""
echo -e " $BWhite set -Ux BUN_INSTALL \"$bun_install\"$Color_Off"
echo -e " $BWhite set -px --path PATH \"$bin_dir\"$Color_Off"
echo ""
fi
elif
test $(basename $SHELL) == "zsh"
then
# Install completions, but we don't care if it fails
IS_BUN_AUTO_UPDATE="true" SHELL="zsh" $exe completions >/dev/null 2>&1
if test -f $HOME/.zshrc; then
echo -e "\n# bun\nexport BUN_INSTALL=\"$bun_install\"" >>"$HOME/.zshrc"
echo -e "export PATH=\"\$BUN_INSTALL/bin:\$PATH\"" >>"$HOME/.zshrc"
echo ""
echo -e "$Dim Added \"$bin_dir\" to \$PATH in \"~/.zshrc\"$Color_Off"
echo ""
echo -e "To get started, run"
echo -e "$BWhite"
echo -e " exec $SHELL"
echo -e " bun --help$Color_Off"
echo ""
exit 0
else
echo ""
echo "Manually add the directory to your \$HOME/.zshrc (or similar)"
echo ""
echo -e " $BWhite export BUN_INSTALL=\"$bun_install\"$Color_Off"
echo -e " $BWhite export PATH=\"\$BUN_INSTALL/bin:\$PATH\"$Color_Off"
fi
else
echo ""
echo "Manually add the directory to your \$HOME/.bashrc (or similar)"
echo ""
echo -e " $BWhiteexport export BUN_INSTALL=\"$bun_install\"$Color_Off"
echo -e " $BWhiteexport export PATH=\"\$BUN_INSTALL/bin:\$PATH\"$Color_Off"
fi
echo ""
echo -e "To get started, run"
echo -e "$BWhite"
echo -e " bun --help$Color_Off"
|