rough-engineer-58925
11/16/2024, 3:59 PMshell_command
. The docs don't have an example. Is the name
attributed omitted on purposed?
https://www.pantsbuild.org/stable/docs/shell/run-shell-commandsrough-engineer-58925
11/16/2024, 4:13 PMpython_sources(name="lib")
shell_command(
name="echo_txt",
command="echo hello world > in.txt",
tools=["echo"],
output_files=["in.txt"],
)
resources(
name="txt",
sources=["in.txt"],
dependencies=[":echo_txt"],
)
pex_binary(
name="app",
entry_point="main.py",
dependencies=[":lib", ":txt"],
wide-midnight-78598
11/16/2024, 4:23 PMrough-engineer-58925
11/16/2024, 5:08 PMwide-midnight-78598
11/16/2024, 11:09 PMrough-engineer-58925
11/17/2024, 3:11 PMresources
should work without the need to use experimentas_wrapped_as_resource
.
Who is the right person to escalate to do you know? I can maybe even help a bit if possible.wide-midnight-78598
11/17/2024, 5:45 PM