We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 737e1e8 commit a1c5c19Copy full SHA for a1c5c19
src/gtt-sync.js
@@ -8,11 +8,14 @@ const Tasks = require('./include/tasks');
8
program
9
.option('-p --proxy <proxy>', 'use a proxy server with the given url')
10
.option('--verbose', 'show verbose output')
11
+ .option('--check_token', 'check the access token')
12
.parse(process.argv);
13
14
Cli.verbose = program.verbose;
15
-let config = new Config(process.cwd()).set('proxy', program.proxy),
16
+let config = new Config(process.cwd())
17
+ .set('proxy', program.proxy)
18
+ .set('_checkToken', program.check_token),
19
tasks = new Tasks(config);
20
21
tasks.syncInit()
0 commit comments