Skip to content

Using new executable name. #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified Products/iOSAssetExtractor
Binary file not shown.
2 changes: 1 addition & 1 deletion iOSAssetExtractor/iOSAssetExtractor/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ int export(NSString *path, NSString *outputDirectoryPath, BOOL group, BOOL expor
NSString *logPath = [filePath substringFromIndex:path.length];
NSLog(@"Processing file: %li/%li, %@", index, count, logPath);
//Extract the CAR file, access the car exceutable, and run that. We need to run it as a separate process since CoreUI seems to only allow loading of one asset catalouge per process. When a process tries to load a second, a bad access exception occurs.
NSString *carExtractorLocation = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"CARExtractor"];
NSString *carExtractorLocation = [[[NSBundle mainBundle] bundlePath] stringByAppendingPathComponent:@"iOSAssetExtractor"];

//Create the task to run the process
NSTask *task = [[NSTask alloc] init];
Expand Down