From b032c9e455df8bb00f90c1f943c287fd4fca2da4 Mon Sep 17 00:00:00 2001 From: Alexander Ljungberg Date: Tue, 21 Aug 2012 22:37:08 +0100 Subject: [PATCH] Fixed: `objcc --includeTypeSignatures` typo. --- Objective-J/CommonJS/lib/objective-j/compiler.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objective-J/CommonJS/lib/objective-j/compiler.js b/Objective-J/CommonJS/lib/objective-j/compiler.js index b55264689..f7b15a8a1 100644 --- a/Objective-J/CommonJS/lib/objective-j/compiler.js +++ b/Objective-J/CommonJS/lib/objective-j/compiler.js @@ -189,7 +189,7 @@ exports.main = function(args) continue; } - if (argv[0] === "-T" || argv[0] === "--incluceTypeSignatures") + if (argv[0] === "-T" || argv[0] === "--includeTypeSignatures") { objjcFlags |= ObjectiveJ.Preprocessor.Flags.IncludeTypeSignatures; argv.shift();