Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CLI documentation with -o instead of deprecated -f #56

Merged
merged 1 commit into from
May 6, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Given the following directory structure:
run this:

cd myFirstExtension
crx pack -f
crx pack -o

to generate this:

Expand All @@ -143,7 +143,7 @@ to generate this:
You can also name the output file like this:

cd myFirstExtension
crx pack -f myFirstExtension.crx
crx pack -o myFirstExtension.crx

to get the same results, or also pipe to the file manually like this.

Expand All @@ -159,7 +159,7 @@ As you can see a key is generated for you at `key.pem` if none exists. You can a

you can run this:

crx pack myFirstExtension -p myPrivateKey.pem -f
crx pack myFirstExtension -p myPrivateKey.pem -o

to sign your package without keeping the key in the directory.

Expand Down