From 4e7aa85a6e2787d585b787be6503e4859a5164bd Mon Sep 17 00:00:00 2001 From: Keith Smiley Date: Tue, 6 Apr 2021 16:33:06 -0700 Subject: [PATCH] Use string instead of sequence --- test/apple_support_test.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/apple_support_test.bzl b/test/apple_support_test.bzl index c7afafd..9efc5cc 100644 --- a/test/apple_support_test.bzl +++ b/test/apple_support_test.bzl @@ -233,10 +233,10 @@ def _apple_support_test_impl(ctx): ctx, outputs = [run_shell_output_ctx], tools = [test_tool], - command = ["/bin/bash", "-c", "{tool} {output}".format( + command = "{tool} {output}".format( output = run_shell_output_ctx.path, tool = test_tool.path, - )], + ), ) test_files = [