Tamarin/hooks/postbuild/texlive/export-dist

14 lines
226 B
Plaintext
Raw Normal View History

2020-08-12 14:42:12 +02:00
#!/bin/bash
function move_output_to_dist {
find . -name "$1" -type f -print0 | xargs -0r mv -t /dist/
2020-08-12 14:42:12 +02:00
}
# Create new directory
mkdir -p /dist
# Move generated files
move_output_to_dist "*.pdf"
tamarin_success "Done :-)"