mirror of https://github.com/opa334/TrollStore.git
Allow specifying binary paths for persistence helper
This commit is contained in:
parent
e6b5c000a9
commit
4d8982545d
|
@ -1310,12 +1310,16 @@ BOOL _installPersistenceHelper(LSApplicationProxy* appProxy, NSString* sourcePer
|
|||
return YES;
|
||||
}
|
||||
|
||||
void installPersistenceHelper(NSString* systemAppId)
|
||||
void installPersistenceHelper(NSString* systemAppId, NSString *persistenceHelperBinary, NSString *rootHelperBinary)
|
||||
{
|
||||
if(findPersistenceHelperApp(PERSISTENCE_HELPER_TYPE_ALL)) return;
|
||||
|
||||
NSString* persistenceHelperBinary = [trollStoreAppPath() stringByAppendingPathComponent:@"PersistenceHelper"];
|
||||
NSString* rootHelperBinary = [trollStoreAppPath() stringByAppendingPathComponent:@"trollstorehelper"];
|
||||
if (persistenceHelperBinary == nil) {
|
||||
persistenceHelperBinary = [trollStoreAppPath() stringByAppendingPathComponent:@"PersistenceHelper"];
|
||||
}
|
||||
if (rootHelperBinary == nil) {
|
||||
rootHelperBinary = [trollStoreAppPath() stringByAppendingPathComponent:@"trollstorehelper"];
|
||||
}
|
||||
LSApplicationProxy* appProxy = [LSApplicationProxy applicationProxyForIdentifier:systemAppId];
|
||||
if(!appProxy || ![appProxy.bundleType isEqualToString:@"System"]) return;
|
||||
|
||||
|
@ -1528,8 +1532,15 @@ int MAIN_NAME(int argc, char *argv[], char *envp[])
|
|||
else if([cmd isEqualToString:@"install-persistence-helper"])
|
||||
{
|
||||
if(args.count < 2) return -3;
|
||||
NSString* systemAppId = args.lastObject;
|
||||
installPersistenceHelper(systemAppId);
|
||||
NSString* systemAppId = args[1];
|
||||
NSString* persistenceHelperBinary;
|
||||
NSString* rootHelperBinary;
|
||||
if (args.count == 4) {
|
||||
persistenceHelperBinary = args[2];
|
||||
rootHelperBinary = args[3];
|
||||
}
|
||||
|
||||
installPersistenceHelper(systemAppId, persistenceHelperBinary, rootHelperBinary);
|
||||
}
|
||||
else if([cmd isEqualToString:@"uninstall-persistence-helper"])
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue