Merge pull request #33 from KevinBalz/master

Fixed misleading error message for Mac OS X
This commit is contained in:
Antonin Décimo
2016-02-06 12:56:43 +01:00

View File

@@ -14,7 +14,7 @@ local s = {}
local function validate(project) local function validate(project)
local valid, err = true, utils.io.err local valid, err = true, utils.io.err
if type(project.identifier) ~= "string" or project.identifier == "" then if type(project.identifier) ~= "string" or project.identifier == "" then
err("DEBIAN: No author specified.\n") err("MacOS X: No identifier specified.\n")
valid = false valid = false
end end
if not valid then os.exit(1) end if not valid then os.exit(1) end