Skip to content

Commit 697b0a7

Browse files
authored
Fix incorrect hyphens in the top level readme (#545)
Some hyphens got replaced by special character hyphens, which cause errors when copied into a command line. Replace with the correct version.
1 parent ba1dd7d commit 697b0a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Expected output artifact is
8181
### Building for certain library
8282

8383
``` bash
84-
python scripts/build_scripts/build_zips.py —-platform=<target platform> --targets=<lib1> -targets=<lib2>
84+
python scripts/build_scripts/build_zips.py --platform=<target platform> --targets=<lib1> --targets=<lib2>
8585
```
8686

8787
> **Note:** Supported library names: analytics, auth, crashlytics, database, dynamic_links, firestore, functions, installations, messaging, remote_config, storage
@@ -103,23 +103,23 @@ Copy the zip file for each platforms to one folder, referred to as assets_zip_di
103103
And then run:
104104

105105
``` bash
106-
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> output=<output dir>
106+
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> --output=<output dir>
107107
```
108108

109109
### Packaging tgz
110110

111111
With the same assets_zip_dir, we can run:
112112

113113
``` bash
114-
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> output=<output dir> --output_upm=True
114+
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> --output=<output dir> --output_upm=True
115115
```
116116

117117
### Packing for certain library
118118

119119
If we build only certain subset of the libraries like in [Building for certain library](#building-for-certain-library), we can copy the built artifacts into assets_zip_dir, and then run:
120120

121121
``` bash
122-
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> -output=<output dir> --apis=<lib1,lib2>
122+
python scripts/build_scripts/build_package.py --zip_dir=<assets_zip_dir> --output=<output dir> --apis=<lib1,lib2>
123123
```
124124

125125
## Including in Project
@@ -139,4 +139,4 @@ The contents of this repository is licensed under the
139139
[Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
140140

141141
Your use of Firebase is governed by the
142-
[Terms of Service for Firebase Services](https://firebase.google.com/terms/).
142+
[Terms of Service for Firebase Services](https://firebase.google.com/terms/).

0 commit comments

Comments
 (0)