mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
8 lines
270 B
Bash
8 lines
270 B
Bash
echo "Update Pi CLI wrapper package"
|
|
|
|
pi_bin="$HOME/.local/bin/pi"
|
|
|
|
if [[ -f $pi_bin ]] && grep -q '^package="@mariozechner/pi-coding-agent"$' "$pi_bin"; then
|
|
sed -i 's|^package="@mariozechner/pi-coding-agent"$|package="@earendil-works/pi-coding-agent"|' "$pi_bin"
|
|
fi
|