diff options
author | Wind He | 2024-07-20 16:20:45 +0800 |
---|---|---|
committer | Wind He | 2024-07-20 16:20:45 +0800 |
commit | d17143bce8c0b4426bc5b34d40fd08a3a1ca520d (patch) | |
tree | ae96d84e97970f2f59cd975ea2d4e05aa78ad9e7 | |
parent | 967535c39240a7498ff5d3b207276c700ae0b44e (diff) | |
download | aur-d17143bce8c0b4426bc5b34d40fd08a3a1ca520d.tar.gz |
fix completion install
-rw-r--r-- | .SRCINFO | 2 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = fish-lsp-git pkgdesc = LSP implementation for the fish shell langauge pkgver = r312.1cbeb37 - pkgrel = 1 + pkgrel = 2 url = https://github.com/ndonfris/fish-lsp/ arch = any license = MIT @@ -2,7 +2,7 @@ pkgname=fish-lsp-git _pkgname=${pkgname%-git} pkgver=r312.1cbeb37 -pkgrel=1 +pkgrel=2 pkgdesc="LSP implementation for the fish shell langauge" arch=(any) url="https://github.com/ndonfris/fish-lsp/" @@ -28,5 +28,5 @@ build() { package() { cd "$_pkgname" install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" - install -Dm0644 "fish-lsp.fish" "$pkgdir/usr/share/fish/vendor_completions.d" + install -Dm644 "fish-lsp.fish" "$pkgdir/usr/share/fish/vendor_completions.d/fish-lsp.fish" } |