소스 검색

CLI typo in usage example

Alexandre Alapetite 9 년 전
부모
커밋
1f03e8a3ae
2개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 1
      cli/export-opml-for-user.php
  2. 1 1
      cli/export-zip-for-user.php

+ 1 - 1
cli/export-opml-for-user.php

@@ -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']);

+ 1 - 1
cli/export-zip-for-user.php

@@ -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']);