Let's say I have a `run_shell_command` "foo". Is t...
# general
p
Let's say I have a
run_shell_command
"foo". Is there anyway I can say that foo must run before bar? Or do I need to use shell_command with outputs?
e
Yeah - you need to chain data dependencies. I'm sure you can make a fake one.
a
@purple-plastic-57801 If you want things to run in the sandbox, you should be using `shell_command`/`adhoc_tool` to chain commands together using
execution_dependencies
If you want to run them outside of the sandbox, you can only run a single target. You could, for instance, write a shell script that executed things in order, and make the
run_shell_command
execute that.
But you probably want to use `shell_command`/`adhoc_tool`.