summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉtienne Deparis2022-09-21 11:27:58 +0200
committerÉtienne Deparis2022-09-21 11:28:02 +0200
commit4c5348b67a429c860515b2be1bba503b75611082 (patch)
tree2750f1c5dfbadb269f3f4c6310f2114b0cb7c3a8
parent4e159ab7384fdf879e6f718da308db24f36fade1 (diff)
downloadaur-4c5348b67a429c860515b2be1bba503b75611082.tar.gz
Protect pkgdir variable when it contains whitespaces
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7633bec03b85..7d41c7fa7c9e 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,8 @@
-# Generated by makepkg 6.0.0
-# Mon Jul 19 14:25:56 UTC 2021
+# Generated by makepkg 6.0.1
+# Wed Sep 21 09:27:32 UTC 2022
pkgbase = chwall-git
pkgdesc = A tiny wallpaper changer, written in python
- pkgver = v0.5.7.r0.g9630456
+ pkgver = v0.5.10.r0.g14af26c
pkgrel = 1
url = https://git.umaneti.net/chwall/about/
arch = any
diff --git a/PKGBUILD b/PKGBUILD
index 1b51a22dee8a..132db145fdf3 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Étienne Deparis <etienne@depar.is>
pkgname=chwall-git
_gitname=chwall
-pkgver=v0.5.7.r0.g9630456
+pkgver=v0.5.10.r0.g14af26c
pkgrel=1
pkgdesc="A tiny wallpaper changer, written in python"
arch=("any")
@@ -21,5 +21,5 @@ pkgver() {
package() {
cd "$srcdir/${_gitname}"
- make dist DESTDIR=$pkgdir
+ make dist DESTDIR="$pkgdir"
}