9 lines
336 B
Bash
Executable file
9 lines
336 B
Bash
Executable file
#!/bin/bash
|
|
|
|
for org_file in org/testdata/*.org; do
|
|
echo $org_file
|
|
./go-org render $org_file html > org/testdata/$(basename $org_file .org).html
|
|
./go-org render $org_file org > org/testdata/$(basename $org_file .org).pretty_org
|
|
done
|
|
|
|
(cd blorg && find testdata/public -type f | sort -u | xargs md5sum > testdata/public.md5)
|