[arch-commits] Commit in python-pyinotify/trunk (PKGBUILD)

Frederik Schwan freswa at archlinux.org
Fri Aug 28 12:59:59 UTC 2020


    Date: Friday, August 28, 2020 @ 12:59:59
  Author: freswa
Revision: 690819

fix unquoted variables

Modified:
  python-pyinotify/trunk/PKGBUILD

----------+
 PKGBUILD |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 12:59:26 UTC (rev 690818)
+++ PKGBUILD	2020-08-28 12:59:59 UTC (rev 690819)
@@ -15,15 +15,15 @@
 sha512sums=('144db691c1cdfd4e52b838b8ed839b8d50d84d26a91a59b7460c3170f58a1c96b3ce4f51e6273835835291781215a87b8f2d2d87d1abf012e4c14b2cd4b3f4cf')
 
 build() {
-  cd pyinotify-$pkgver
+  cd pyinotify-${pkgver}
   python3 setup.py build
 }
 
 package() {
-  cd pyinotify-$pkgver
-  python3 setup.py install --root=${pkgdir} -O1
+  cd pyinotify-${pkgver}
+  python3 setup.py install --root="${pkgdir}" -O1
 
-  install -d ${pkgdir}/usr/share/licenses/python-pyinotify
+  install -d "${pkgdir}"/usr/share/licenses/python-pyinotify
   install -m644 COPYING \
-    ${pkgdir}/usr/share/licenses/python-pyinotify
+    "${pkgdir}"/usr/share/licenses/python-pyinotify
 }



More information about the arch-commits mailing list