From 63d4482e8cd910faf4d7650a3284a3ae3a8f9e99 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Fri, 24 Oct 2025 04:01:07 -0400 Subject: [PATCH] Hotfix: Prevent error when no orphans exist --- bin/omarchy-update-system-pkgs | 2 +- version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/omarchy-update-system-pkgs b/bin/omarchy-update-system-pkgs index b1928696..197a9330 100755 --- a/bin/omarchy-update-system-pkgs +++ b/bin/omarchy-update-system-pkgs @@ -23,7 +23,7 @@ if pacman -Qem >/dev/null; then fi fi -orphans=$(pacman -Qtdq) +orphans=$(pacman -Qtdq || true) if [[ -n $orphans ]]; then echo -e "\e[32m\nRemove orphan system packages\e[0m" for pkg in $orphans; do diff --git a/version b/version index ef538c28..ff365e06 100644 --- a/version +++ b/version @@ -1 +1 @@ -3.1.2 +3.1.3