summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorBaptiste Jonglez2016-11-28 23:57:48 +0100
committerBaptiste Jonglez2016-11-29 00:19:40 +0100
commitbbebf5c57bc612c5e163b653829c90eb555bd60c (patch)
treea182f3290289f86877341eb6237a5ea095a67788
parentb39c8d920f710e98fa1884457caa0487f68ef313 (diff)
downloadaur-bbebf5c57bc612c5e163b653829c90eb555bd60c.tar.gz
npiet: Properly quote shell variables
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD2
2 files changed, 2 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 3d4fdf53bde6..8f025388225a 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,5 +1,5 @@
# Generated by mksrcinfo v8
-# Thu Dec 10 20:17:28 UTC 2015
+# Mon Nov 28 22:57:49 UTC 2016
pkgbase = npiet
pkgdesc = An interpreter for piet programs. Also includes npietedit and npiet-foogol
pkgver = 1.3d
diff --git a/PKGBUILD b/PKGBUILD
index bc70b0ac364b..663933b9a468 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -26,7 +26,7 @@ package() {
# Provide some examples
for i in examples/*
do
- install -D -m 644 $i $pkgdir/usr/share/$pkgname/$i
+ install -D -m 644 "$i" "$pkgdir/usr/share/$pkgname/$i"
done
}