diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-02-06 15:23:38 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-06 16:52:19 +0000 |
commit | 3b39e5307cf676966cee9cf0ff64ec795bb732de (patch) | |
tree | f0083bead6c4d4064b1d0088f3c2f4022c4bb385 /scripts | |
parent | 2180cc32b9a6d434c319292c1a636fb8e4d23899 (diff) | |
download | poky-3b39e5307cf676966cee9cf0ff64ec795bb732de.tar.gz |
bitbake-prserv-tool: show error when export file does not exist
* otherwise it shows error about failing import
(From OE-Core rev: 65b2f068719f4cd6e1bd438e8714c2977bd93535)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bitbake-prserv-tool | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/scripts/bitbake-prserv-tool b/scripts/bitbake-prserv-tool index 4654e6d421..96a34702c9 100755 --- a/scripts/bitbake-prserv-tool +++ b/scripts/bitbake-prserv-tool | |||
@@ -61,8 +61,16 @@ do_migrate_localcount () | |||
61 | clean_cache | 61 | clean_cache |
62 | echo "Exporting LOCALCOUNT to AUTOINCs..." | 62 | echo "Exporting LOCALCOUNT to AUTOINCs..." |
63 | bitbake -R conf/migrate_localcount.conf -p | 63 | bitbake -R conf/migrate_localcount.conf -p |
64 | [ ! $? -eq 0 ] && echo "Exporting failed!" && exit 1 | 64 | [ ! $? -eq 0 ] && echo "Exporting to file $df failed!" && exit 1 |
65 | 65 | ||
66 | if [ -e $df ]; | ||
67 | then | ||
68 | echo "Exporting to file $df succeeded!" | ||
69 | else | ||
70 | echo "Exporting to file $df failed!" | ||
71 | exit 1 | ||
72 | fi | ||
73 | |||
66 | echo "Importing generated AUTOINC entries..." | 74 | echo "Importing generated AUTOINC entries..." |
67 | [ -e $df ] && do_import $df | 75 | [ -e $df ] && do_import $df |
68 | 76 | ||