mirror of
https://github.com/bitcoin/bips.git
synced 2024-11-19 09:50:06 +01:00
3248581928
Black arrows are visible only in light theme (unless white background for dark theme). Two-color arrows are visible in light theme and in dark theme.
10 lines
368 B
Bash
Executable File
10 lines
368 B
Bash
Executable File
#!/bin/bash
|
|
|
|
pdflatex -output-format=pdf coinjoin-workflow.tex && \
|
|
inkscape --with-gui --export-text-to-path \
|
|
--export-plain-svg=coinjoin-workflow.svg coinjoin-workflow.pdf && \
|
|
pdflatex -output-format=pdf multisig-workflow.tex && \
|
|
inkscape --with-gui --export-text-to-path \
|
|
--export-plain-svg=multisig-workflow.svg multisig-workflow.pdf && \
|
|
echo '"success"'
|