Files
arthur-os/bin/omarchy-update-available
T
Ryan Hughes 75cb4f7195 Make setup ISO-only
Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
2026-06-04 18:37:32 -04:00

16 lines
341 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Check whether the Omarchy package has an available update.
set -e
if pacman -Qu omarchy >/tmp/omarchy-update-available.$$ 2>/dev/null; then
cat /tmp/omarchy-update-available.$$
rm -f /tmp/omarchy-update-available.$$
exit 0
fi
rm -f /tmp/omarchy-update-available.$$
echo "Omarchy is up to date"
exit 1