From c92aedf433eb508b34906f2919e01cf4b6541e34 Mon Sep 17 00:00:00 2001 From: Martin Carlberg Date: Mon, 21 Nov 2022 16:41:16 +0100 Subject: [PATCH] Fixed: Quick fix for XcodeCapp so it will run without python2 scripts --- Tools/XcodeCapp/XcodeCapp/XCCTaskLauncher.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Tools/XcodeCapp/XcodeCapp/XCCTaskLauncher.m b/Tools/XcodeCapp/XcodeCapp/XCCTaskLauncher.m index fccecd51c..c8ad64e61 100644 --- a/Tools/XcodeCapp/XcodeCapp/XCCTaskLauncher.m +++ b/Tools/XcodeCapp/XcodeCapp/XCCTaskLauncher.m @@ -40,7 +40,9 @@ self.environment[@"NARWHAL_ENGINE"] = @"jsc"; self.environment[@"CAPP_NOSUDO"] = @"1"; - self.executables = @[@"python", @"objj", @"nib2cib",@"objj2objcskeleton", @"capp_lint", @"touch"]; + //self.executables = @[@"python", @"objj", @"nib2cib",@"objj2objcskeleton", @"capp_lint", @"touch"]; + // Removed python and capp_liunt as python2 is not supported anymore. + self.executables = @[@"objj", @"nib2cib",@"objj2objcskeleton", @"touch"]; self.isValid = [self _checkExecutables]; }