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

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


    Date: Friday, August 28, 2020 @ 12:02:24
  Author: freswa
Revision: 690626

fix unquoted variables

Modified:
  bashrun/trunk/PKGBUILD

----------+
 PKGBUILD |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-08-28 12:02:15 UTC (rev 690625)
+++ PKGBUILD	2020-08-28 12:02:24 UTC (rev 690626)
@@ -14,10 +14,10 @@
 sha512sums=('49fe7b50b7439e8dc8d642510e6e843743c96005ee7787febb39eed543c488d7fcd83ec776cba42f89670e3af98d7273c7d5f429a5893f5b2b0cb5b48bd299ab')
 
 package() {
-  cd ${srcdir}/$pkgname-$pkgver
+  cd "${srcdir}"/$pkgname-$pkgver
 
-  install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname
-  install -D -m644 $pkgname.1 ${pkgdir}/usr/share/man/man1/$pkgname.1
-  install -D -m644 bashrc ${pkgdir}/usr/share/$pkgname/bashrc
+  install -D -m755 $pkgname "${pkgdir}"/usr/bin/$pkgname
+  install -D -m644 $pkgname.1 "${pkgdir}"/usr/share/man/man1/$pkgname.1
+  install -D -m644 bashrc "${pkgdir}"/usr/share/$pkgname/bashrc
 }
 



More information about the arch-commits mailing list