#!/bin/sh -e
# Author: Kees Cook <kees@ubuntu.com>
# Copyright (C) 2009 Canonical, Ltd.
# License: GPLv3

loc=$(dirname "$0")

for b in "$@"; do
    "$loc"/update-bug --not-security --is-private $b || {
        echo "ERROR with '$b'" >&2
    }
done

