Fixed: Quick fix for XcodeCapp so it will run without python2 scripts

This commit is contained in:
Martin Carlberg
2022-11-21 16:41:16 +01:00
parent 7857f92f19
commit c92aedf433
+3 -1
View File
@@ -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];
}