git » pyalpm.git » commit 3f0dd28

Fix unquoted variables

author Jelle van der Waa
2021-01-10 11:29:18 UTC
committer Jelle van der Waa
2021-01-10 11:29:18 UTC
parent 6fdb59410470a4821d4c6e0a7a8fb49c62a7e7d4

Fix unquoted variables

PKGBUILD +5 -5

diff --git a/PKGBUILD b/PKGBUILD
index 8d0e916..69893b5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,23 +16,23 @@ sha512sums=('SKIP'
             'b7dacb28bc13f5c9fb9c9295d1a3d323b7b7c0893d69b110f3036b73a4930e8463b5a19011b0e5996ff55157768376c2e53ab97c557afe29bbe3b5d0c8a1e027')
 
 prepare() {
-  cd ${srcdir}/${pkgname}
+  cd "${pkgname}"
   # Revert memleak patch which causes 'random' segfauts since
   # the handle is still used while it's already cleaned up.
-  patch -NRp1 -i ${srcdir}/memleak.patch
+  patch -NRp1 -i "${srcdir}/memleak.patch"
 }
 
 build() {
-  cd ${srcdir}/${pkgname}
+  cd "${pkgname}"
   python setup.py build
 }
 
 check() {
-  cd ${srcdir}/${pkgname}
+  cd "${pkgname}"
   PYTHONPATH="$PWD/build/lib.linux-$CARCH-3.9" pytest
 }
 
 package() {
-  cd ${srcdir}/${pkgname}
+  cd "${pkgname}"
   python setup.py install --root=${pkgdir}
 }