Sign in
pigweed
/
third_party
/
github
/
bazel-contrib
/
rules_go
/
aadb72e60d6b24b086d082cb25af8b5ec00a51d2
/
.
/
go
/
private
/
actions
/
utils.bzl
blob: b3a360e421a4507829ca0f273d1e03dc6586ad25 [
file
]
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
])