Is there an example on how to use `run_shell_comma...
# general
p
Is there an example on how to use
run_shell_command
with a shell script? I can't seem to get it to load a .sh file next to the BUILD file
1
Copy code
run_shell_command(
    name = "foo",
    command="./libcamera.sh",
    execution_dependencies=[":libcamera.sh"]
)

file(source="libcamera.sh")
Rats.. nevermind. I can't spell. The filename was wrong .. llibcamera != libcamera 🤦
🙈 1