Skip to content

Commit

Permalink
fix: doc for keys
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Nov 14, 2024
1 parent 3d2ce3c commit 7ee84d2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,10 @@ Options:
* `--s3-bucket-name <bucketName>` Name for your AWS S3 bucket.
* `--s3-port <port>` Port for your S3 endpoint.
* `--no-s3-ssl` Disable SSL for S3 upload.
* `--key <key>` Custom path for public signing key.
* `--key-data <keyData>` Public signing key.
* `--key-v2 <key>` Custom path for private signing key.
* `--key-data-v2 <keyData>` Private signing key.
* `--key <key>` Custom path for public signing key (v1 system).
* `--key-data <keyData>` Public signing key (v1 system).
* `--key-v2 <key>` Custom path for private signing key (v2 system).
* `--key-data-v2 <keyData>` Private signing key (v2 system).
* `--bundle-url` Prints bundle URL into stdout.
* `--no-key` Ignore signing key and send clear update.
* `--no-code-check` Ignore checking if notifyAppReady() is called in source code and index present in root folder.
Expand Down
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ bundle
.option('--s3-bucket-name <bucketName>', 'Name for your AWS S3 bucket')
.option('--s3-port <port>', 'Port for your S3 endpoint')
.option('--no-s3-ssl', 'Disable SSL for S3 upload')
.option('--key <key>', 'custom path for public signing key')
.option('--key-data <keyData>', 'public signing key')
.option('--key-v2 <key>', 'custom path for private signing key')
.option('--key-data-v2 <keyDataV2>', 'private signing key')
.option('--key <key>', 'custom path for public signing key (v1 system)')
.option('--key-data <keyData>', 'public signing key (v1 system)')
.option('--key-v2 <key>', 'custom path for private signing key (v2 system)')
.option('--key-data-v2 <keyDataV2>', 'private signing key (v2 system)')
.option('--bundle-url', 'prints bundle url into stdout')
.option('--no-key', 'ignore signing key and send clear update')
.option('--no-code-check', 'Ignore checking if notifyAppReady() is called in soure code and index present in root folder')
Expand Down

0 comments on commit 7ee84d2

Please sign in to comment.