mirror of
https://github.com/basecamp/omarchy.git
synced 2026-01-09 05:10:54 +08:00
8 lines
310 B
Bash
Executable File
8 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Returns true if the AUR is up and available.
|
|
# Used by omarchy-update-system-pkgs to ensure the AUR is available before updating packages from it.
|
|
|
|
curl -sf --connect-timeout 30 --retry 3 --retry-delay 3 -A "omarchy-update" \
|
|
"https://aur.archlinux.org/rpc/?v=5&type=info&arg=base" >/dev/null
|