Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/help.lua')
-rw-r--r--src/base/help.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/base/help.lua b/src/base/help.lua
index 2235826..7998ff3 100644
--- a/src/base/help.lua
+++ b/src/base/help.lua
@@ -6,7 +6,7 @@
function premake.showhelp()
-
+
-- display the basic usage
printf("Premake %s, a build script generator", _PREMAKE_VERSION)
printf(_PREMAKE_COPYRIGHT)
@@ -15,7 +15,7 @@
printf("Usage: premake4 [options] action [arguments]")
printf("")
-
+
-- display all options
printf("OPTIONS")
printf("")
@@ -24,8 +24,8 @@
local description = option.description
if (option.value) then trigger = trigger .. "=" .. option.value end
if (option.allowed) then description = description .. "; one of:" end
-
- printf(" --%-15s %s", trigger, description)
+
+ printf(" --%-15s %s", trigger, description)
if (option.allowed) then
for _, value in ipairs(option.allowed) do
printf(" %-14s %s", value[1], value[2])
@@ -45,7 +45,7 @@
-- see more
printf("For additional information, see http://industriousone.com/premake")
-
+
end