summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-01-07 15:36:19 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-01-07 15:36:19 -0400
commit26725f59373aea86fc428f953127b281b3c4d3e5 (patch)
tree3c8646448ef030a922d02ebb284480cd5cf94f81
parent5e09ba1b2035ca72981d1f2dc6d33b9480dd5108 (diff)
add $@ to wrapper
-rwxr-xr-xstandalone/android/buildapk2
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/android/buildapk b/standalone/android/buildapk
index 34ddd9537..b7f7d033b 100755
--- a/standalone/android/buildapk
+++ b/standalone/android/buildapk
@@ -16,7 +16,7 @@ VER="$(perl -e '$_=<>;print m/\((.*?)\)/'<../../CHANGELOG)"
wrap () {
echo "#!/bin/sh -e" > "$2"
echo "echo \"$1 added options: $2\" >&2" >> "$2"
- echo "$1 $3" >> "$2"
+ echo "$1 $3 "'"$@"' >> "$2"
chmod +x "$2"
}