mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
Remove legacy online installer entrypoints, collapse migrations for 4.0, and move setup responsibilities into target-side system, hardware, and user commands.
16 lines
341 B
Bash
Executable File
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
|