summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Marzal2021-01-24 20:22:44 +0100
committerDavid Marzal2021-01-24 20:22:44 +0100
commitde4e7e86eb9a71a986fc54bde984bbdd01f7c064 (patch)
tree8cd1c573de1e11412702d0380dbe4fe9804ee08f
parent336a731d2044519d842d718e8876495d8eb886e9 (diff)
downloadaur-de4e7e86eb9a71a986fc54bde984bbdd01f7c064.tar.gz
commands in .install should not send error codes
-rw-r--r--studio-controls.install6
1 files changed, 3 insertions, 3 deletions
diff --git a/studio-controls.install b/studio-controls.install
index 07c77c560bdb..39a7d9f1388a 100644
--- a/studio-controls.install
+++ b/studio-controls.install
@@ -1,6 +1,6 @@
# arg 1: the new package version
post_install() {
- find /home/*/.asoundrc -exec echo '==> {} made by Cadence may not be compatible with Studio-Controls' \;
-
- pacman -Ql python-pyalsaaudio | grep 3.8 && echo "==> Please reinstall python-pyalsaaudio cleaning the cache, it shouldn't be found in python3.8 directory"
+ (find /home/*/.asoundrc -exec echo '==> {} made by Cadence may not be compatible with Studio-Controls' \; 2>/dev/null) || true
+
+ (pacman -Ql python-pyalsaaudio | grep 3.8 && echo "==> Please reinstall python-pyalsaaudio cleaning the cache, it shouldn't be found in python3.8 directory") || true
} \ No newline at end of file