diff options
author | Kalle Sommer Nielsen <kalle@php.net> | 2017-07-23 11:28:27 +0200 |
---|---|---|
committer | Kalle Sommer Nielsen <kalle@php.net> | 2017-07-23 11:28:27 +0200 |
commit | 216d711224194ab2d50e473d039eb1762c3fb5f7 (patch) | |
tree | 45c73fe08767cc7196755088490d9206edc350bf /ext/ext_skel.php | |
parent | e960ba64009e72e57cc760689a832670efee1d93 (diff) | |
download | php-git-216d711224194ab2d50e473d039eb1762c3fb5f7.tar.gz |
Fix ext_skel's help, the arguments passed are using a space, not an equal sign for values
Diffstat (limited to 'ext/ext_skel.php')
-rw-r--r-- | ext/ext_skel.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/ext_skel.php b/ext/ext_skel.php index 4528a10f50..b12c1af57d 100644 --- a/ext/ext_skel.php +++ b/ext/ext_skel.php @@ -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); |