From d5ae9ffa05dfa51c6bfc1c6a889fb4441d94b680 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Tue, 9 Sep 2025 14:47:40 +0200 Subject: [PATCH] Don't stop execution on a failure or the script will exit before we get to omarchy-show-done Which in turn means you can't see error messages on failed installs. Closes #1521 --- bin/omarchy-pkg-aur-install | 2 -- bin/omarchy-pkg-install | 2 -- 2 files changed, 4 deletions(-) diff --git a/bin/omarchy-pkg-aur-install b/bin/omarchy-pkg-aur-install index c99ee714..97be84b9 100755 --- a/bin/omarchy-pkg-aur-install +++ b/bin/omarchy-pkg-aur-install @@ -1,7 +1,5 @@ #!/bin/bash -set -e - fzf_args=( --multi --preview 'yay -Sii {1}' diff --git a/bin/omarchy-pkg-install b/bin/omarchy-pkg-install index 8a6c1ce6..36916467 100755 --- a/bin/omarchy-pkg-install +++ b/bin/omarchy-pkg-install @@ -1,7 +1,5 @@ #!/bin/bash -set -e - fzf_args=( --multi --preview 'pacman -Sii {1}'