Skip to content

Commit

Permalink
Changed all examples to use longer form options
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsharman committed May 23, 2018
1 parent e5801a0 commit 6d2131e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ By default this will look for content packages inside the `./data/input` directo
If you want to use different input and/or output paths you can use options:

```
mo convert:to:learnosity -i /my/path/to/qti -o /my/path/to/output/folder --organisation_id [integer]
mo convert:to:learnosity --input /my/path/to/qti --output /my/path/to/output/folder --organisation_id [integer]
```

Remember you can ask for `help`:
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/ConvertToLearnosityCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
}

$output->writeln([
" <info>mo convert:to:learnosity -i /path/to/qti -o /path/to/save/folder -org [integer]</info>"
" <info>mo convert:to:learnosity --input /path/to/qti --output /path/to/save/folder --organisation_id [integer]</info>"
]);
} else {
$Convert = new ConvertToLearnosityService($inputPath, $outputPath, $output, $organisationId);
Expand Down

0 comments on commit 6d2131e

Please sign in to comment.