diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-01-07 15:36:19 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-01-07 15:36:19 -0400 |
commit | 26725f59373aea86fc428f953127b281b3c4d3e5 (patch) | |
tree | 3c8646448ef030a922d02ebb284480cd5cf94f81 /standalone/android | |
parent | 5e09ba1b2035ca72981d1f2dc6d33b9480dd5108 (diff) |
add $@ to wrapper
Diffstat (limited to 'standalone/android')
-rwxr-xr-x | standalone/android/buildapk | 2 |
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" } |