This is an automated email from the ASF dual-hosted git repository.
pengzheng pushed a commit to branch feature/refactor_bundle_cache
in repository https://gitbox.apache.org/repos/asf/celix.git
The following commit(s) were added to refs/heads/feature/refactor_bundle_cache
by this push:
new 639a7ad0 Non-existent bundle id is not an error.
639a7ad0 is described below
commit 639a7ad0d1a85a241aa157b8e6953b9b90e5597c
Author: PengZheng <[email protected]>
AuthorDate: Tue Feb 21 20:35:44 2023 +0800
Non-existent bundle id is not an error.
---
bundles/shell/shell/src/bundle_command.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bundles/shell/shell/src/bundle_command.c
b/bundles/shell/shell/src/bundle_command.c
index cbf9dd17..ec45a588 100644
--- a/bundles/shell/shell/src/bundle_command.c
+++ b/bundles/shell/shell/src/bundle_command.c
@@ -45,7 +45,7 @@ bool bundleCommand_execute(void *handle, const char
*constCommandLine, FILE *out
continue;
}
if (!celix_bundleContext_isBundleInstalled(ctx, bndId)) {
- fprintf(errStream, "No bundle with id %li.\n", bndId);
+ fprintf(outStream, "No bundle with id %li.\n", bndId);
continue;
}
celix_framework_t* fw = celix_bundleContext_getFramework(ctx);