1load( 2 "@bazel_skylib//lib:shell.bzl", 3 "shell", 4) 5 6def quote_opts(opts): 7 return " ".join([shell.quote(opt) if " " in opt else opt for opt in opts])
View as plain text