circolog/makezip.sh

9 lines
170 B
Bash
Raw Permalink Normal View History

2019-05-28 20:43:35 +02:00
#!/bin/bash
find build/ -type f|cut -d/ -f 1-3|uniq|while read -r dir; do
zip -j -r "circolog-$(git describe)-$(cut -d/ -f 2-3 <<<"$dir"|tr / -)" "$dir"
done
wait