From 22f564b9ff56e3f8399e195432c902e27f2cd03b Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Wed, 6 Mar 2024 09:49:46 +0100 Subject: [PATCH] Ignore errors during `ytmdesktop` installation --- scripts/Arch/Software/ytmdesktop/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Arch/Software/ytmdesktop/install.sh b/scripts/Arch/Software/ytmdesktop/install.sh index da46c188..93fe78a9 100755 --- a/scripts/Arch/Software/ytmdesktop/install.sh +++ b/scripts/Arch/Software/ytmdesktop/install.sh @@ -6,7 +6,8 @@ yay --noconfirm -Syu electron13-bin; yes | pipenv run --python 3.10 -- \ yay --noconfirm -Syu \ - ytmdesktop; + ytmdesktop \ + || true; popd > /dev/null; rm -rf "$contextRoot";