commit | 9b372d1d774f37b13853d9fd09ebdd7bfc5059a7 | [log] [tgz] |
---|---|---|
author | Benjamin Staffin <benley@gmail.com> | Wed Feb 10 16:41:50 2016 +0000 |
committer | Dmitry Lomov <dslomov@google.com> | Thu Feb 11 11:48:37 2016 +0000 |
tree | 65946895e9fc4c9f74cf579fb3df3523e03f10aa | |
parent | a0eefb52f529b73c6cb92f0a762853646ea2eae6 [diff] |
docker: Exclude .changes files when collecting debs -- Change-Id: I7badee212bd05178a30a6ff4c73c8d62258d2c1d Reviewed-on: https://bazel-review.googlesource.com/#/c/2841 MOS_MIGRATED_REVID=114330213
diff --git a/tools/build_defs/docker/docker.bzl b/tools/build_defs/docker/docker.bzl index 9ca4fc8..0d5c40b 100644 --- a/tools/build_defs/docker/docker.bzl +++ b/tools/build_defs/docker/docker.bzl
@@ -100,7 +100,7 @@ args += ["--file=%s=%s" % (f.path, _dest_path(f, data_path)) for f in ctx.files.files] args += ["--tar=" + f.path for f in ctx.files.tars] - args += ["--deb=" + f.path for f in ctx.files.debs] + args += ["--deb=" + f.path for f in ctx.files.debs if f.path.endswith(".deb")] args += ["--link=%s:%s" % (k, ctx.attr.symlinks[k]) for k in ctx.attr.symlinks]