Skip to content
Draft
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
3 changes: 2 additions & 1 deletion .github/actions/setup-vllm-gpu/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ runs:
" continue"
)
if old not in source:
raise SystemExit(f"Expected route.path assignment not found in {routing_path}")
print(f"Patch not needed: {old!r} not found in {routing_path}")
raise SystemExit(0)
routing_path.write_text(source.replace(old, new, 1))
print(f"Patched {routing_path}")
PY
Expand Down
Loading