diff options
author | OYTIS <tossel@gmail.com> | 2017-12-20 16:42:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-20 16:42:56 +0100 |
commit | 4483e6bf2b40c69843eb837c201fc0cf337aa0af (patch) | |
tree | a4ef3b323c4ab688f4bd202c2b157625a336a88d /classes/image_repo_manifest.bbclass | |
parent | 057fe7e802dd2bfbbe85f57bef99bbdf0f8c25a2 (diff) | |
parent | 6630a83d1292bb96a531208b7c52aa1744c54f79 (diff) | |
download | meta-updater-4483e6bf2b40c69843eb837c201fc0cf337aa0af.tar.gz |
Merge pull request #212 from advancedtelematic/bugfix/PRJ-286/spekulatius
Fixes for Spekulatius
Diffstat (limited to 'classes/image_repo_manifest.bbclass')
-rw-r--r-- | classes/image_repo_manifest.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/image_repo_manifest.bbclass b/classes/image_repo_manifest.bbclass index 2012363..467fd9a 100644 --- a/classes/image_repo_manifest.bbclass +++ b/classes/image_repo_manifest.bbclass | |||
@@ -14,9 +14,9 @@ HOSTTOOLS_NONFATAL += " repo " | |||
14 | # Write build information to target filesystem | 14 | # Write build information to target filesystem |
15 | buildinfo () { | 15 | buildinfo () { |
16 | if [ $(which repo) ]; then | 16 | if [ $(which repo) ]; then |
17 | repo manifest --revision-as-HEAD -o ${IMAGE_ROOTFS}${sysconfdir}/manifest.xml || echo "Android repo tool failed to run; manifest not copied" | 17 | repo manifest --revision-as-HEAD -o ${IMAGE_ROOTFS}${sysconfdir}/manifest.xml || bbwarn "Android repo tool failed to run; manifest not copied" |
18 | else | 18 | else |
19 | echo "Android repo tool not found; manifest not copied." | 19 | bbwarn "Android repo tool not found; manifest not copied." |
20 | fi | 20 | fi |
21 | } | 21 | } |
22 | 22 | ||