Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
10 lines
258 B
Bash
Executable File
10 lines
258 B
Bash
Executable File
#!/bin/bash
|
|
# omarchy:summary=Pin pacman to a single mirror
|
|
# omarchy:args=<mirror-id>
|
|
# omarchy:examples=omarchycn mirror pin tuna
|
|
# omarchy:requires-sudo=true
|
|
|
|
set -euo pipefail
|
|
|
|
exec omarchy-cn-mirror-apply "${1:?usage: omarchycn mirror pin <mirror-id>}"
|