Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ hatch run build:for <triple> # for a specific agent triple
hatch run build:me /path/to/agent
# or place the desired agent binary at
# `src/appsignal/appsignal-agent`, and then:
hatch run build:me --keep-agent
_APPSIGNAL_BUILD_AGENT_PATH="--keep-agent" hatch run build:me
```

### Clean up build artifacts
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ ignore = [

[tool.hatch.envs.build.scripts]
all = "python src/scripts/build_all.py"
me = "_APPSIGNAL_BUILD_AGENT_PATH=\"{args}\" hatch build -t wheel"
me = "hatch build -t wheel"
for = "_APPSIGNAL_BUILD_TRIPLE=\"{args}\" hatch build -t wheel"

[tool.hatch.build.targets.wheel.hooks.custom]
Expand Down
Loading