Tamarin/hooks/postbuild/debian/export-dist

17 lines
343 B
Plaintext
Raw Permalink Normal View History

2015-08-04 23:58:43 +02:00
#!/bin/bash
function move_output_to_dist {
2017-02-09 21:53:24 +01:00
find . -maxdepth 1 -name "$1" -type f -print0 | xargs -0r mv -t /dist/
}
2015-08-04 23:58:43 +02:00
# Create new directory
mkdir -p /dist
# Move generated files
move_output_to_dist "*.deb"
move_output_to_dist "*.changes"
move_output_to_dist "*.dsc"
move_output_to_dist "*.tar.{bz2,gz,lzma,xz}"
2017-03-22 09:26:11 +01:00
tamarin_success "Done :-)"