mirror of
https://github.com/bitcoin/bips.git
synced 2024-11-19 09:50:06 +01:00
10 lines
368 B
Bash
10 lines
368 B
Bash
|
#!/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"'
|