[PATCH] fwts-collect: tidy up error handling

Keng-Yü Lin kengyu at canonical.com
Tue Feb 21 03:23:32 UTC 2012


On Fri, Feb 10, 2012 at 11:44 PM, Colin King <colin.king at canonical.com> wrote:
> From: Colin Ian King <colin.king at canonical.com>
>
> Signed-off-by: Colin Ian King <colin.king at canonical.com>
> ---
>  scripts/fwts-collect |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/fwts-collect b/scripts/fwts-collect
> index f8bd12c..37e0042 100755
> --- a/scripts/fwts-collect
> +++ b/scripts/fwts-collect
> @@ -116,8 +116,8 @@ trap 'on_die' TERM INT
>  mkdir $TMPDIR
>
>  err=$?
> -if [ $? -ne 0 ]; then
> -       echo "Cannot create temporary directory $TMPDIR: error $?" 1>&2
> +if [ $err -ne 0 ]; then
> +       echo "Cannot create temporary directory $TMPDIR: error $err" 1>&2
>        exit 1
>  fi
>
> --
> 1.7.9
>
Acked-by: Keng-Yu Lin <kengyu at canonical.com>




More information about the fwts-devel mailing list