From 216d711224194ab2d50e473d039eb1762c3fb5f7 Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Sun, 23 Jul 2017 11:28:27 +0200 Subject: [PATCH] Fix ext_skel's help, the arguments passed are using a space, not an equal sign for values --- ext/ext_skel.php | 10 +++++----- 1 file 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= [--experimental] [--author=]%s', PHP_EOL); - printf(' [--dir=] [--std] [--onlyunix]%s', PHP_EOL); + printf('php ext_skel.php --ext [--experimental] [--author ]%s', PHP_EOL); + printf(' [--dir ] [--std] [--onlyunix]%s', PHP_EOL); printf(' [--onlywindows] [--help]%1$s%1$s', PHP_EOL); - printf(' --ext= The name of the extension defined as %s', PHP_EOL); + printf(' --ext The name of the extension defined as %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= Your name, this is used if --header is passed and%s', PHP_EOL); + printf(' --author Your name, this is used if --header is passed and%s', PHP_EOL); printf(' for the CREDITS file%s', PHP_EOL); - printf(' --dir= Path to the directory for where extension should be%s', PHP_EOL); + printf(' --dir 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); -- 2.40.0