sigma_devsecops
@sigma_devsecops

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

asciidoctorの--base-dirが効かない

解決したいこと

asciidoctorで.adocをhtmlに変換しようとしています。
この際に--base-dirを指定して実行するとうまくいかないので気になっています。
確認したいこととしては--base-dirを指定してadocの格納されているディレクトリを指定するのがあっているかです。

発生している問題・エラー

# フルパスでtest.adocのパスを指定するとうまくいく
root@90f41e5ca1d7:/app# asciidoctor --base-dir /app/src/docs/asciidoc --destination-dir /app/src/docs/html /app/src/docs/asciidoc/test.adoc 

# --basdirなしでもうまくいく
root@90f41e5ca1d7:/app# asciidoctor --destination-dir /app/src/docs/html /app/src/docs/asciidoc/test.adoc

# --base-dirを指定した場合には相対パスで.adocを指定すればよいはずだがうまくいかない。 
root@90f41e5ca1d7:/app# asciidoctor --base-dir /app/src/docs/asciidoc --destination-dir /app/src/docs/html test.adoc
asciidoctor: FAILED: input file test.adoc is missing

以上のことから--base-dirの指定がうまくいっていないと判断しています。

0

1Answer

Your answer might help someone💌