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]; }