summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarl Wikström2019-08-12 18:39:05 +0200
committerKarl Wikström2019-08-12 18:39:05 +0200
commit33aaf4dea8da6a91504bb30432d2a4e17708c165 (patch)
treeae7c48533c40fe7669dc6efe5a7f571d5cf0d9e7
parente50f5b1848a78368d950da5395798215d64977d6 (diff)
downloadaur-33aaf4dea8da6a91504bb30432d2a4e17708c165.tar.gz
Fix missed 'cd' command in package function
-rw-r--r--PKGBUILD2
1 files changed, 1 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index 3c3b4e78dd37..08863348666b 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -23,6 +23,6 @@ build() {
}
package() {
- $pkgname-$pkgver/cmd/bgc
+ cd $pkgname-$pkgver/cmd/bgc
install -Dm755 bgc "$pkgdir"/usr/bin/bgc
}