X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-dev.git/blobdiff_plain/79ef2ee0f373698f44a4c099d4097611c65ecbdf..9623c7ffa046436fa1f31bdb2dc2412dd3789819:/invirt-ood-build diff --git a/invirt-ood-build b/invirt-ood-build deleted file mode 100755 index fe2365a..0000000 --- a/invirt-ood-build +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -packages="$(invirt-ood-packages)" - -if [ ${#packages} -eq 0 ]; then - echo "No packages to build." - exit 0 -fi - -echo "The following NEW packages will be built:" -echo $packages | fmt | sed 's/^/ /' -echo -n "Do you want to continue? [Y/n] " - -read answer -if [ "${answer:0:1}" = "n" -o "${answer:0:1}" = "N" ]; then - echo "Abort." - exit 0 -fi - -for package in $packages; do - invirt-build-release "$package" -done