aboutsummaryrefslogtreecommitdiff
path: root/go/private/actions/utils.bzl
blob: b3a360e421a4507829ca0f273d1e03dc6586ad25 (plain)
1
2
3
4
5
6
7
load(
    "@bazel_skylib//lib:shell.bzl",
    "shell",
)

def quote_opts(opts):
    return " ".join([shell.quote(opt) if " " in opt else opt for opt in opts])