...

Text file src/github.com/bazelbuild/rules_go/go/private/actions/utils.bzl

Documentation: github.com/bazelbuild/rules_go/go/private/actions

     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