Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c31863dc authored by Luca Stefani's avatar Luca Stefani Committed by Myles Watson
Browse files

bundler: Remove unneeded print

* If the command didn't execute succesfully then it would've
  returned with exit(1) and caused the build to stop
* Hence there's no need to inform the user about it
  since in the soong build-box it's automatically removed
  once the client has finished running
  ( Successfully bundled 2 bfbs files into filename:out/soong/.temp/sbox331472943/module_schema_data )

Test: m
Change-Id: I5b3211e87673bdf0f40e0dcca8e2f6a4a7304d14
parent 40b80ada
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -234,8 +234,6 @@ int WriteBundledSchema() {
    fprintf(stderr, "Unable to save file:%s\n", final_filename.c_str());
    return EXIT_FAILURE;
  }
  fprintf(
      stdout, "Successfully bundled %zu bfbs files into filename:%s\n", bfbs_filenames.size(), final_filename.c_str());

  std::string header(opts.gen);
  header += ("/" + std::string(opts.filename) + ".h");