mirror of
https://github.com/bitcoin/bips.git
synced 2025-02-24 15:36:53 +01:00
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.
9 lines
368 B
Bash
Executable file
9 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"'
|