PlayAssetDelivery/BundletoolScriptSample/add_packs.py [435:453]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  bundletool_cmd = [
      "java", "-jar", bundletool_path, "build-bundle", "--modules",
      ",".join(module_zip_files), "--output", output_path, "--config",
      bundle_config_path
  ]

  for entry in metadata:
    bundletool_cmd.append("--metadata-file")
    bundletool_cmd.append(entry)

  print("Running {bundletool_cmd}".format(bundletool_cmd=bundletool_cmd))
  exit_code = subprocess.call(bundletool_cmd)

  if exit_code != 0:
    print(
        "Error executing {bundletool_cmd}".format(
            bundletool_cmd=bundletool_cmd),
        file=sys.stderr)
    sys.exit(-1)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



PlayAssetDelivery/BundletoolScriptSample/add_packs.py [503:521]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    bundletool_cmd = [
        "java", "-jar", bundletool_path, "build-bundle", "--modules",
        ",".join(module_zip_files), "--output", output_path, "--config",
        bundle_config_path
    ]

    for entry in metadata:
      bundletool_cmd.append("--metadata-file")
      bundletool_cmd.append(entry)

    print("Running {bundletool_cmd}".format(bundletool_cmd=bundletool_cmd))
    exit_code = subprocess.call(bundletool_cmd)

    if exit_code != 0:
      print(
          "Error executing {bundletool_cmd}".format(
              bundletool_cmd=bundletool_cmd),
          file=sys.stderr)
      sys.exit(-1)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



