Skip to content

Commit afc8333

Browse files
authored
Assume codegen renders markdown, not asciidoc (#2664)
* Assume codegen renders markdown, not asciidoc * Drop accidental local dev tweak
1 parent 85396dd commit afc8333

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/make.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async function codegen (args) {
123123
await $`rm -rf ${join(import.meta.url, '..', 'src', 'api')}`
124124
await $`mkdir ${join(import.meta.url, '..', 'src', 'api')}`
125125
await $`cp -R ${join(import.meta.url, '..', '..', 'elastic-client-generator-js', 'output')}/* ${join(import.meta.url, '..', 'src', 'api')}`
126-
await $`mv ${join(import.meta.url, '..', 'src', 'api', 'reference.asciidoc')} ${join(import.meta.url, '..', 'docs', 'reference.asciidoc')}`
126+
await $`mv ${join(import.meta.url, '..', 'src', 'api', 'reference.md')} ${join(import.meta.url, '..', 'docs', 'reference', 'api-reference.md')}`
127127
await $`npm run build`
128128

129129
// run docs example generation

0 commit comments

Comments
 (0)