Browse Source

Fix the default config description (#38)

* There's no auth stuff in here

* `now` -> `Now`

* Add missing `'`

* Mention `now config help`
master
Matheus Fernandes 8 years ago
committed by Guillermo Rauch
parent
commit
6169cc2f5b
  1. 2
      src/get-default-auth-cfg.js
  2. 2
      src/get-default-cfg.js

2
src/get-default-auth-cfg.js

@ -1,6 +1,6 @@
const getDefaultAuthCfg = () => ({ const getDefaultAuthCfg = () => ({
_: _:
'This is your now credentials file. DONT SHARE! More: https://git.io/now-global-config', 'This is your Now credentials file. DON\'T SHARE! More: https://git.io/now-global-config',
credentials: [] credentials: []
}) })

2
src/get-default-cfg.js

@ -1,6 +1,6 @@
const getDefaultCfg = () => ({ const getDefaultCfg = () => ({
_: _:
'This is your now credentials file. DONT SHARE! More: https://git.io/now-global-config' 'This is your Now config file. See `now config help`. More: https://git.io/now-global-config'
}) })
module.exports = getDefaultCfg module.exports = getDefaultCfg

Loading…
Cancel
Save