source: trunk/packages/invirt-dev/invirt-ood-build @ 2376

Last change on this file since 2376 was 1592, checked in by broder, 15 years ago

Apparently I screwed up splitting up the list of packages for invirt-ood-build

  • Property svn:executable set to *
File size: 430 bytes
Line 
1#!/bin/bash
2
3packages="$(invirt-ood-packages)"
4
5if [ ${#packages} -eq 0 ]; then
6    echo "No packages to build."
7    exit 0
8fi
9
10echo "The following NEW packages will be built:"
11echo $packages | fmt | sed 's/^/  /'
12echo -n "Do you want to continue? [Y/n] "
13
14read answer
15if [ "${answer:0:1}" = "n" -o "${answer:0:1}" = "N" ]; then
16   echo "Abort."
17   exit 0
18fi
19
20for package in $packages; do
21    invirt-build-release "$package"
22done
Note: See TracBrowser for help on using the repository browser.