Compare commits

...
2 Commits
Author SHA1 Message Date
Ryan Hughes 63d4482e8c Hotfix: Prevent error when no orphans exist 2025-10-24 04:01:07 -04:00
Ryan Hughes efdea50053 Update issue templates 2025-10-24 03:43:52 -04:00
5 changed files with 8 additions and 2 deletions
+1
View File
@@ -19,5 +19,6 @@ body:
id: steps
attributes:
label: What's wrong?
description: Describe the issue, include steps to recreate it if possible, and attach the output of `omarchy-debug` if possible
validations:
required: true
+4
View File
@@ -1 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: 🛟 Community Support
url: https://omarchy.org/discord
about: Need help? Join our Discord community for support with any issues. GitHub issues should be used for verified bugs, documentation, and enhancement proposals only.
+1
View File
@@ -11,5 +11,6 @@ body:
id: steps
attributes:
label: What correction or addition do we need?
description: Please provide reference links and specifics of what should be updated
validations:
required: true
+1 -1
View File
@@ -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
+1 -1
View File
@@ -1 +1 @@
3.1.2
3.1.3