From de0df83c44147e85cbec667eb589d90edbd2984f Mon Sep 17 00:00:00 2001 From: Alad Wenter Date: Tue, 3 Nov 2020 17:05:41 +0100 Subject: [PATCH] aurutils: fix cd call --- .SRCINFO | 2 +- PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f6c83ad..586cd27 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = aurutils pkgdesc = helper tools for the arch user repository pkgver = 3.0.3 - pkgrel = 1 + pkgrel = 2 url = https://github.com/AladW/aurutils changelog = aurutils.changelog arch = any diff --git a/PKGBUILD b/PKGBUILD index 73ecafe..a6baa16 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Alad Wenter pkgname=aurutils pkgver=3.0.3 -pkgrel=1 +pkgrel=2 pkgdesc='helper tools for the arch user repository' url='https://github.com/AladW/aurutils' arch=('any') @@ -26,11 +26,11 @@ prepare() { } build() { - cd aurutils + cd "$pkgname-$pkgver" make } package() { - cd aurutils + cd "$pkgname-$pkgver" make DESTDIR="$pkgdir" install }