I'm trying to run `uv run` inside `shell_command` ...
# general
s
I'm trying to run
uv run
inside
shell_command
, but it's failing trying to install kerberos with
Copy code
cc: fatal error: cannot execute 'as': execvp: No such file or directory
any idea how to fix it?
log
Copy code
shell_command(
    name="build",
    command="uv --cache-dir={chroot}/uv run sphinx-build -M dirhtml docs/source/ docs/build/",
    tools=[
        "cc",
        "gcc",
        "krb5-config",
        "sed",
        "uv",
    ],
    workdir="/",
    experimental_named_caches={"uv": "uv"},
)
d
it sounds like you have to add
as
to
tools
?
s
ah, you're right, I was confused by execvp