electron-osx-sign-usage.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. NAME
  2. electron-osx-sign -- code signing for Electron apps
  3. SYNOPSIS
  4. electron-osx-sign app [embedded-binary ...] [options ...]
  5. DESCRIPTION
  6. app
  7. Path to the application package.
  8. Needs file extension ``.app''.
  9. embedded-binary ...
  10. Path to additional binaries that will be signed along with built-ins of Electron, spaced.
  11. --help
  12. Flag to display all commands.
  13. --identity=identity
  14. Name of certificate to use when signing.
  15. Default to selected with respect to --provisioning-profile and --platform from --keychain specified or keychain by system default.
  16. --identityValidation, --no-identityValidation
  17. Flag to enable/disable validation for the signing identity.
  18. --ignore=path
  19. Path to skip signing. The string will be treated as a regular expression when used to match the file paths.
  20. --keychain=keychain
  21. The keychain name.
  22. Default to system default keychain.
  23. --platform=platform
  24. Build platform of Electron.
  25. Allowed values: ``darwin'', ``mas''.
  26. Default to auto detect from application bundle.
  27. --pre-auto-entitlements, --no-pre-auto-entitlements
  28. Flag to enable/disable automation of entitlements file and Info.plist.
  29. --pre-embed-provisioning-profile, --no-pre-embed-provisioning-profile
  30. Flag to enable/disable embedding of provisioning profile.
  31. --provisioning-profile=file
  32. Path to provisioning profile.
  33. --strictVerify, --strictVerify=options, --no-strictVerify
  34. Flag to enable/disable ``--strict'' flag when verifying the signed application bundle.
  35. Each component should be separated in ``options'' with comma (``,'').
  36. Enabled by default.
  37. --type=type
  38. Specify whether to sign app for development or for distribution.
  39. Allowed values: ``development'', ``distribution''.
  40. Default to ``distribution''.
  41. --version=version
  42. Build version of Electron.
  43. Values may be: ``1.2.0''.
  44. Default to latest Electron version.