We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In lib/asciidoctor-diagram/wavedrom/converter.rb, the code checks whether the found wavedrom ends in '-cli'.
On windows 11, source.find_command finds "wavedrom-cli.CMD". This is ignored in the check in line 38:
if wavedrom.end_with?('-cli')
This results the code failing to convert. By changing the check to the code below, the conversion successfully completes.
if wavedrom.end_with?('-cli') || wavedrom.end_with?('-cli.CMD')
wavedrom version: 3.2.0 asciidoctor-diagram version: 2.3.0
MT
The text was updated successfully, but these errors were encountered:
#459 Fix lookup of wavedrom-cli location on Windows
wavedrom-cli
12dcd7c
7fab9c4
No branches or pull requests
In lib/asciidoctor-diagram/wavedrom/converter.rb, the code checks whether the found wavedrom ends in '-cli'.
On windows 11, source.find_command finds "wavedrom-cli.CMD". This is ignored in the check in line 38:
This results the code failing to convert.
By changing the check to the code below, the conversion successfully completes.
wavedrom version: 3.2.0
asciidoctor-diagram version: 2.3.0
MT
The text was updated successfully, but these errors were encountered: