diff options
author | 2022-12-09 10:20:20 +0200 | |
---|---|---|
committer | 2022-12-09 10:21:18 +0200 | |
commit | a3dbf16e324af0cba773f048fbab67c952ed5ac4 (patch) | |
tree | 103896d207408acd224a67cfebaecc2a47e413c1 /net-im | |
parent | kde-plasma/plasma-meta: Keyword 5.26.4 x86, #876793 (diff) | |
download | gentoo-a3dbf16e324af0cba773f048fbab67c952ed5ac4.tar.gz gentoo-a3dbf16e324af0cba773f048fbab67c952ed5ac4.tar.bz2 gentoo-a3dbf16e324af0cba773f048fbab67c952ed5ac4.zip |
net-im/mattermost-desktop-bin: add error handling
Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.2.ebuild b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.2.ebuild index 4450b3f967c4..9abbfd63f0dc 100644 --- a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.2.ebuild +++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.2.2.ebuild @@ -66,9 +66,9 @@ S="${WORKDIR}" src_install() { if use amd64; then - cd mattermost-desktop-${MY_PV}-linux-x64 + cd mattermost-desktop-${MY_PV}-linux-x64 || die elif use arm64; then - cd mattermost-desktop-${MY_PV}-linux-arm64 + cd mattermost-desktop-${MY_PV}-linux-arm64 || die fi newicon app_icon.png ${MY_PN}.png |