CLI typo in usage example

This commit is contained in:
Alexandre Alapetite
2016-10-23 13:44:14 +02:00
parent 6d55a4f6b4
commit 1f03e8a3ae
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ $options = getopt('', array(
));
if (empty($options['user'])) {
fail('Usage: ' . basename(__FILE__) . " --user username > /path/to/file.opml.xml'");
fail('Usage: ' . basename(__FILE__) . " --user username > /path/to/file.opml.xml");
}
$username = cliInitUser($options['user']);

View File

@@ -8,7 +8,7 @@ $options = getopt('', array(
));
if (empty($options['user'])) {
fail('Usage: ' . basename(__FILE__) . " --user username --max-feed-entries 100 > /path/to/file.zip'");
fail('Usage: ' . basename(__FILE__) . " --user username --max-feed-entries 100 > /path/to/file.zip");
}
$username = cliInitUser($options['user']);