diff options
author | Colin Cross <ccross@android.com> | 2018-09-18 17:05:15 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2018-09-21 16:08:16 -0700 |
commit | 08e28abc4ecd10a0e0ab2dcb683560f9c6331e1b (patch) | |
tree | 1c001d1aa0e8a5c60c8ce67f842ee8fc448b7d4f /zip/cmd | |
parent | 3f4d116496ac1dd6a844f8706fb547126f8211ef (diff) | |
download | build_soong-08e28abc4ecd10a0e0ab2dcb683560f9c6331e1b.tar.gz build_soong-08e28abc4ecd10a0e0ab2dcb683560f9c6331e1b.tar.bz2 build_soong-08e28abc4ecd10a0e0ab2dcb683560f9c6331e1b.zip |
soong_zip: support globs in -f and -D arguments
-f and -D arguments can now take globs in the Soong format.
Also update the use of soong_zip that jars resources to escape the
globs in the arguments, and then shell-escape them when writing to
the rsp file so the glob escape are not intepreted by ReadRespFile.
Also remove an unused argument to the buildAAR rule that could
have contained values that needed escaping.
Test: m checkbuild
Change-Id: I7f20bb169dc01f952d2a7681ec6ee9c05737ed37
Diffstat (limited to 'zip/cmd')
-rw-r--r-- | zip/cmd/main.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/zip/cmd/main.go b/zip/cmd/main.go index dfd56dc6..f49105a6 100644 --- a/zip/cmd/main.go +++ b/zip/cmd/main.go @@ -199,6 +199,11 @@ func main() { flags.Parse(expandedArgs[1:]) + if flags.NArg() > 0 { + fmt.Fprintf(os.Stderr, "unexpected arguments %s\n", strings.Join(flags.Args(), " ")) + usage() + } + err := zip.Run(zip.ZipArgs{ FileArgs: fArgs, OutputFilePath: *out, |