Skip to content

Commit 08aa4b7

Browse files
committed
Fix minor in start method
1 parent ca8b2e3 commit 08aa4b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gtt-start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let config = new Config(process.cwd()),
1818
tasks = new Tasks(config),
1919
type = program.type ? program.type : 'issue',
2020
id = program.args.length === 1 ? parseInt(program.args[0]) : parseInt(program.args[1]),
21-
project = program.args.length === 2 ? project = program.args[0] : null;
21+
project = program.args.length === 2 ? program.args[0] : null;
2222

2323
if (program.args.length < 2 && !config.get('project'))
2424
Cli.error('No project set');

0 commit comments

Comments
 (0)