Skip to content

Commit 83ca0b5

Browse files
committed
fix: normalizeOutput
1 parent 90bfcd5 commit 83ca0b5

File tree

1 file changed

+1
-1
lines changed
  • packages/openapi-typescript/bin

1 file changed

+1
-1
lines changed

packages/openapi-typescript/bin/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function normalizeOutput(output) {
8787
if (path.isAbsolute(output)) {
8888
return new URL(`file://${output}}`);
8989
}
90-
return new URL(flags.output, CWD);
90+
return new URL(output, CWD);
9191
}
9292

9393
/**

0 commit comments

Comments
 (0)