mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-07-29 10:40:39 +00:00
feature(config) rm option: cache
This commit is contained in:
parent
28892b3933
commit
58c10e201a
7 changed files with 2 additions and 23 deletions
|
|
@ -36,7 +36,6 @@ const args = require('minimist')(argv.slice(2), {
|
|||
],
|
||||
boolean: [
|
||||
'auth',
|
||||
'cache',
|
||||
'repl',
|
||||
'save',
|
||||
'server',
|
||||
|
|
@ -61,7 +60,6 @@ const args = require('minimist')(argv.slice(2), {
|
|||
server : true,
|
||||
name : choose(env('name'), config('name')),
|
||||
auth : choose(env('auth'), config('auth')),
|
||||
cache : choose(env.bool('cache'), config('cache')),
|
||||
port : config('port'),
|
||||
online : config('online'),
|
||||
open : config('open'),
|
||||
|
|
@ -120,7 +118,6 @@ function main() {
|
|||
|
||||
config('name', args.name);
|
||||
config('auth', args.auth);
|
||||
config('cache', args.cache);
|
||||
config('online', args.online);
|
||||
config('open', args.open);
|
||||
config('username', args.username);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue