fix(generate-cli): treat relative commands as stdio

This commit is contained in:
Peter Steinberger 2025-11-18 04:50:52 +00:00
parent 375f85af63
commit 1abccbc9bb

View File

@ -1,4 +1,4 @@
const DOMAIN_WITH_PATH_PATTERN = /^[A-Za-z0-9.-]+(?::\d+)?\//;
const DOMAIN_WITH_PATH_PATTERN = /^[A-Za-z0-9](?:[A-Za-z0-9.-]*)(?::\d+)?\//;
export function normalizeHttpUrlCandidate(value?: string): string | undefined {
if (!value) {