Move the invirtibuilder into invirt-dev as a first step towards
[invirt/packages/invirt-dev.git] / invirt-ood-build
1 #!/bin/bash
2
3 packages="$(invirt-ood-packages)"
4
5 if [ ${#packages} -eq 0 ]; then
6     echo "No packages to build."
7     exit 0
8 fi
9
10 echo "The following NEW packages will be built:"
11 echo $packages | fmt | sed 's/^/  /'
12 echo -n "Do you want to continue? [Y/n] "
13
14 read answer
15 if [ "${answer:0:1}" = "n" -o "${answer:0:1}" = "N" ]; then
16    echo "Abort."
17    exit 0
18 fi
19
20 for package in $packages; do
21     invirt-build-release "$package"
22 done