[OE-core] [PATCH] bitbake-prserv-tool: show error when export file does not exist

Martin Jansa martin.jansa at gmail.com
Wed Feb 6 14:29:10 UTC 2013


On Wed, Feb 06, 2013 at 03:23:38PM +0100, Martin Jansa wrote:
> * otherwise it shows error about failing import

It fails like this e.g. when someone tries to migrate_localcount without
any entries in cache/bb_persist_data.sqlite3

> Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
> ---
>  scripts/bitbake-prserv-tool | 10 +++++++++-
>  1 file changed, 9 insertions(+), 1 deletion(-)
> 
> diff --git a/scripts/bitbake-prserv-tool b/scripts/bitbake-prserv-tool
> index 4654e6d..96a3470 100755
> --- a/scripts/bitbake-prserv-tool
> +++ b/scripts/bitbake-prserv-tool
> @@ -61,8 +61,16 @@ do_migrate_localcount ()
>      clean_cache
>      echo "Exporting LOCALCOUNT to AUTOINCs..."
>      bitbake -R conf/migrate_localcount.conf -p
> -    [ ! $? -eq 0 ] && echo "Exporting failed!" && exit 1
> +    [ ! $? -eq 0 ] && echo "Exporting to file $df failed!" && exit 1
>  
> +    if [ -e $df ];
> +    then
> +        echo "Exporting to file $df succeeded!"
> +    else
> +        echo "Exporting to file $df failed!"
> +        exit 1
> +    fi
> +    
>      echo "Importing generated AUTOINC entries..."
>      [ -e $df ] && do_import $df
>  
> -- 
> 1.8.1.2
> 

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa at gmail.com
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 198 bytes
Desc: Digital signature
URL: <http://lists.openembedded.org/pipermail/openembedded-core/attachments/20130206/35839e60/attachment-0002.sig>


More information about the Openembedded-core mailing list