File tree 1 file changed +0
-18
lines changed
1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -234,9 +234,6 @@ main() {
234
234
# The .deb and .rpm files are pulled from GitHub.
235
235
debian) install_deb ;;
236
236
fedora | opensuse) install_rpm ;;
237
- # Arch uses the AUR package which only supports amd64 and arm64 since it
238
- # pulls releases from GitHub so we need to fall back to npm.
239
- arch) install_aur ;;
240
237
# We don't have GitHub releases that work on Alpine or FreeBSD so we have no
241
238
# choice but to use npm here.
242
239
alpine) install_apk ;;
@@ -333,21 +330,6 @@ install_apk() {
333
330
echo_systemd_postinstall apk
334
331
}
335
332
336
- install_aur () {
337
- echoh " Installing latest from the AUR."
338
- echoh
339
-
340
- sh_c mkdir -p " $CACHE_DIR /coder-aur"
341
- sh_c " curl -#fsSL https://aur.archlinux.org/cgit/aur.git/snapshot/coder.tar.gz | tar -xzC $CACHE_DIR /coder-aur --strip-components 1"
342
- echo " + cd $CACHE_DIR /coder-aur"
343
- if [ ! " ${DRY_RUN-} " ]; then
344
- cd " $CACHE_DIR /coder-aur"
345
- fi
346
- sh_c makepkg -si
347
-
348
- echo_systemd_postinstall AUR
349
- }
350
-
351
333
install_standalone () {
352
334
echoh " Installing v$VERSION of the $ARCH release from GitHub."
353
335
echoh
You can’t perform that action at this time.
0 commit comments