]> granicus.if.org Git - php/commitdiff
Fix ext_skel's help, the arguments passed are using a space, not an equal sign for...
authorKalle Sommer Nielsen <kalle@php.net>
Sun, 23 Jul 2017 09:28:27 +0000 (11:28 +0200)
committerKalle Sommer Nielsen <kalle@php.net>
Sun, 23 Jul 2017 09:28:27 +0000 (11:28 +0200)
ext/ext_skel.php

index 4528a10f503b5483afbf140b6ef5dca59d1d6588..b12c1af57d5628422459d9ae12236fdeeee33f61 100644 (file)
@@ -30,15 +30,15 @@ function error($message) {
 /* {{{ print_help
  */
 function print_help() {
-       printf('php ext_skel.php --ext=<name> [--experimental] [--author=<name>]%s', PHP_EOL);
-       printf('                 [--dir=<path>] [--std] [--onlyunix]%s', PHP_EOL);
+       printf('php ext_skel.php --ext <name> [--experimental] [--author <name>]%s', PHP_EOL);
+       printf('                 [--dir <path>] [--std] [--onlyunix]%s', PHP_EOL);
        printf('                 [--onlywindows] [--help]%1$s%1$s', PHP_EOL);
-       printf('  --ext=<name>          The name of the extension defined as <name>%s', PHP_EOL);
+       printf('  --ext <name>          The name of the extension defined as <name>%s', PHP_EOL);
        printf('  --experimental        Passed if this extension is experimental, this creates%s', PHP_EOL);
        printf('                        the EXPERIMENTAL file in the root of the extension%s', PHP_EOL);
-       printf('  --author=<name>       Your name, this is used if --header is passed and%s', PHP_EOL);
+       printf('  --author <name>       Your name, this is used if --header is passed and%s', PHP_EOL);
        printf('                        for the CREDITS file%s', PHP_EOL);
-       printf('  --dir=<path>          Path to the directory for where extension should be%s', PHP_EOL);
+       printf('  --dir <path>          Path to the directory for where extension should be%s', PHP_EOL);
        printf('                        created. Defaults to the directory of where this script%s', PHP_EOL);
        printf('                        lives%s', PHP_EOL);
        printf('  --std                 If passed, the standard header and vim rules footer used%s', PHP_EOL);