Skip to content

Commit 99b55dc

Browse files
author
Chris Raynor
committed
Merge branch 'master' of github.com:firebase/firebase-tools into v1.1.0
2 parents b3343fb + dc70fb8 commit 99b55dc

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ Usage: firebase <command>
4343
4444
list
4545
Lists the Firebases available to the currently logged in user.
46+
47+
delete-site
48+
Deletes the current app from Firebase Hosting and displays a
49+
'Site not Found' page as if the site had never been deployed to.
4650
4751
login
4852
Logs the user into Firebase. All commands that require login will prompt
@@ -52,11 +56,15 @@ Usage: firebase <command>
5256
Logs the user out of Firebase.
5357

5458
-h, --help
55-
Shows this help screen. Use `firebase <command> --help` for more detailed
56-
help instructions.
59+
Shows this help screen. Use `firebase <command> --help` for more
60+
detailed help instructions.
5761

5862
-v, --version
5963
Displays the current version.
64+
65+
-s, --silent
66+
Silent mode for scripting - commands will error with non-zero status code
67+
instead of waiting for prompt if not enough information supplied.
6068
```
6169
6270
## Credit

lib/help.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,10 @@ module.exports = {
202202
' -v, --version\n' +
203203
' Displays the current version.\n' +
204204
'\n' +
205+
' -s, --silent\n' +
206+
' Silent mode for scripting - commands will error with non-zero status code\n' +
207+
' instead of waiting for prompt if not enough information supplied.\n' +
208+
'\n' +
205209
'For a quick start guide, see https://www.firebase.com/docs/hosting.html\n');
206210
}
207211
},

0 commit comments

Comments
 (0)