File tree 1 file changed +3
-30
lines changed
1 file changed +3
-30
lines changed Original file line number Diff line number Diff line change @@ -91,16 +91,6 @@ Then run with:
91
91
EOF
92
92
}
93
93
94
- echo_brew_postinstall () {
95
- echoh
96
- cath << EOF
97
- Brew release has been installed.
98
-
99
- Run with:
100
- coder
101
- EOF
102
- }
103
-
104
94
echo_systemd_postinstall () {
105
95
echoh
106
96
cath << EOF
@@ -238,17 +228,9 @@ main() {
238
228
DISTRO=${DISTRO:- $(distro)}
239
229
240
230
case $DISTRO in
241
- # macOS uses brew when available and falls back to standalone.
242
- macos)
243
- BREW_PATH=" ${BREW_PATH-brew} "
244
- if command_exists " $BREW_PATH " ; then
245
- install_brew
246
- else
247
- echoh " Homebrew not installed."
248
- echoh " Falling back to standalone installation."
249
- install_standalone
250
- fi
251
- ;;
231
+ # macOS uses the standalone installation for now.
232
+ # Homebrew support is planned. See: https://github.com/coder/coder/issues/1925
233
+ macos) install_standalone ;;
252
234
# The .deb and .rpm files are pulled from GitHub.
253
235
debian) install_deb ;;
254
236
fedora | opensuse) install_rpm ;;
@@ -318,15 +300,6 @@ fetch() {
318
300
sh_c mv " $FILE .incomplete" " $FILE "
319
301
}
320
302
321
- install_brew () {
322
- echoh " Installing latest from Homebrew."
323
- echoh
324
-
325
- sh_c " $BREW_PATH " install coder
326
-
327
- echo_brew_postinstall
328
- }
329
-
330
303
install_deb () {
331
304
echoh " Installing v$VERSION of the $ARCH deb package from GitHub."
332
305
echoh
You can’t perform that action at this time.
0 commit comments