From 36c8c19317a7ddc2193fddc07a4c2e70dbd6afc5 Mon Sep 17 00:00:00 2001 From: Kevin Balz Date: Sat, 6 Feb 2016 12:32:08 +0100 Subject: [PATCH] Fixed misleading error message for Mac OS X When the identifier is missing it would prompt an error message which would tell that the author is missing. --- src/scripts/macosx.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/macosx.lua b/src/scripts/macosx.lua index a5f27b1..fba3233 100644 --- a/src/scripts/macosx.lua +++ b/src/scripts/macosx.lua @@ -14,7 +14,7 @@ local s = {} local function validate(project) local valid, err = true, utils.io.err if type(project.identifier) ~= "string" or project.identifier == "" then - err("DEBIAN: No author specified.\n") + err("MacOS X: No identifier specified.\n") valid = false end if not valid then os.exit(1) end