APPLIED: [kteam-tools][PATCH] maint-startnewrelease: stop if DEBEMAIL is unset
Kleber Souza
kleber.souza at canonical.com
Thu Mar 1 17:30:34 UTC 2018
On 02/01/18 20:20, Kamal Mostafa wrote:
> Signed-off-by: Kamal Mostafa <kamal at canonical.com>
> ---
> maintscripts/maint-startnewrelease | 7 +++----
> 1 file changed, 3 insertions(+), 4 deletions(-)
>
> diff --git a/maintscripts/maint-startnewrelease b/maintscripts/maint-startnewrelease
> index 3d3f9b1..50ccdd8 100755
> --- a/maintscripts/maint-startnewrelease
> +++ b/maintscripts/maint-startnewrelease
> @@ -57,10 +57,9 @@ if not mailenforce:
> mailenforce = "@canonical.com"
>
> debem = os.getenv("DEBEMAIL")
> -if debem is not None:
> - if mailenforce not in debem:
> - print 'DEBEMAIL does not contain', mailenforce
> - sys.exit(1)
> +if (debem is None) or (debem is not None and mailenforce not in debem):
> + print 'DEBEMAIL is unset, or does not contain', mailenforce
> + sys.exit(1)
>
> #------------------------------------------------------------------------------
> # Find the abstracted debian directory and make sure it is there (IOW we are
>
Applied to kteam-tools/master branch.
Thanks!
Kleber
More information about the kernel-team
mailing list