fix(mobile): restore the Mac's update alias

The base defines update only where yay exists. The Mac had its own, wrapping
brew update, upgrade, cask upgrade, greedy upgrade and cleanup, and it was lost
in the checkout.

It was the only real loss there. The eight macports aliases that also went are
no loss at all - MacPorts is not installed on that machine, so pc, pi, pli and
the rest all pointed at a command that does not exist.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
thomas.kopp
2026-08-08 22:31:24 +02:00
co-authored by Claude Opus 5
parent 0bfef0662a
commit 6889d6f1da
+6
View File
@@ -28,3 +28,9 @@ bench() {
# The previous configuration exported PYTHONPATH=/usr/lib/python3.9/site-packages.
# That is a Linux path and does not exist on macOS at all; beastix and shron
# carried the same line pointing at 3.9 and 3.4 respectively. None are kept.
# The base defines "update" only where yay exists, which is the two Arch
# machines. This is the Mac's equivalent, and it was the one thing genuinely
# lost in the first checkout here - the eight macports aliases that also
# disappeared pointed at a "port" command this machine does not have.
alias update="brew update && brew upgrade && brew upgrade --cask && brew upgrade --greedy && brew cleanup"