Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismgrayftsinc committed Dec 2, 2022
1 parent d194e8c commit ea44a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spring_image.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def tar_jars(ctx, files, out):
ctx.actions.run_shell(
inputs = ctx.files._jdk + files,
outputs = [spring_components_file],
command = "touch {file}; for i in {all_paths}; do {jar} xf $i && if [-s META-INF/spring.components ]; then cat META-INF/spring.components >> {file}; fi; done".format(file = spring_components_file.path, jar = jar_path, all_paths = " ".join(paths)),
command = "touch {file}; for i in {all_paths}; do {jar} xf $i && if [ -s META-INF/spring.components ]; then cat META-INF/spring.components >> {file}; fi; done".format(file = spring_components_file.path, jar = jar_path, all_paths = " ".join(paths)),
)

ctx.actions.run_shell(
Expand Down

0 comments on commit ea44a0d

Please sign in to comment.