summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorMartin Dünkelmann2021-08-25 16:55:47 +0200
committerMartin Dünkelmann2021-08-25 16:55:47 +0200
commit3aaf028f200ad03fbff0e5c3b365650636f3a7a3 (patch)
treeb3516adc8fc117051fff59be2bc811428b680e94 /PKGBUILD
parenta9ab76cb02e9ce05438c63c117e805165f6d6041 (diff)
downloadaur-3aaf028f200ad03fbff0e5c3b365650636f3a7a3.tar.gz
Fix path not found exception
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 09dd94d79432..c98b7c027818 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=ferdi-nightly-bin
pkgver=5.6.1.nightly.38
-pkgrel=2
+pkgrel=3
pkgdesc='A messaging browser that allows you to combine your favorite messaging services into one application - nightly binary version'
url='https://getferdi.com'
license=('Apache')
@@ -33,5 +33,6 @@ package() {
bsdtar -xf ${srcdir}/ferdi.rpm
- ln -sf opt/Ferdi/ferdi "usr/local/bin/ferdi"
+ mkdir -p usr/local/bin/
+ ln -sf opt/Ferdi/ferdi usr/local/bin/ferdi
}