summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Mangold2020-03-04 11:35:54 +0100
committerOliver Mangold2020-03-04 11:35:54 +0100
commit646b2de052d07b7555e71e5d8bbf001cafd26818 (patch)
tree6a2a2a42a4579e490e60861580133b1431f763e1
parent7b7c073388852e22d0407bfa84c1cefe5f1e5d67 (diff)
downloadaur-646b2de052d07b7555e71e5d8bbf001cafd26818.tar.gz
fixing escaping in parameter passing through wrapper script
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 4 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4db7e66b5837..35a8f234281f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = blender-2.7-bin
pkgdesc = A fully integrated 3D graphics creation suite (2.7 branch)
pkgver = 2.79.190729.e045fe53f1b0
- pkgrel = 1
+ pkgrel = 2
url = https://www.blender.org
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 414a8e251696..1e6b6499228e 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
# Contributor: Adam Brunnmeier <adam.brunnmeier@gmail.com>
pkgname=blender-2.7-bin
pkgver=2.79.190729.e045fe53f1b0
-pkgrel=1
+pkgrel=2
pkgdesc="A fully integrated 3D graphics creation suite (2.7 branch)"
arch=('i686' 'x86_64')
url="https://www.blender.org"
@@ -52,8 +52,8 @@ Exec=blender-2.7-thumbnailer.py %u %o
MimeType=application/x-blender;
' > blender.thumbnailer
sed -i '1s;^;#!/usr/share/blender/'"$_upstreamversion"'/python/bin/python3.7m\n;' blender-thumbnailer.py
- echo -e '#!/bin/bash\nexec /usr/share/blender/blender-2.7 $@' > blender-2.7
- echo -e '#!/bin/bash\nexec /usr/share/blender/blender-2.7-softwaregl $@' > blender-2.7-softwaregl
+ echo -e '#!/bin/bash\nexec /usr/share/blender/blender-2.7 "$@"' > blender-2.7
+ echo -e '#!/bin/bash\nexec /usr/share/blender/blender-2.7-softwaregl "$@"' > blender-2.7-softwaregl
}
package() {