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

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

Add invirt-ood-build for building out of date packages

  • Property svn:executable set to *
File size: 438 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 "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
20IFS="$(echo)"
21for package in $packages; do
22    invirt-build-release "$package"
23fi
Note: See TracBrowser for help on using the repository browser.