mirror of
https://github.com/sparkle-project/Sparkle.git
synced 2025-11-01 15:34:38 +00:00
a523621b71
Although it is interesting to separate the user driver and update scheduler in different processes, this has yet to prove useful. Further, this management should not exist in the user driver protocol since the protocol would be doing double duty. If this separation is useful in the future, it should be separated into another driver altogether. Note that it is also hard to write correct code that separates the user driver and updater. Removing this code should greatly reduce maintenance costs.
20 lines
412 B
Objective-C
20 lines
412 B
Objective-C
//
|
|
// TestAppHelper.m
|
|
// TestAppHelper
|
|
//
|
|
// Created by Mayur Pawashe on 3/2/16.
|
|
// Copyright © 2016 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#import "TestAppHelper.h"
|
|
#import "SUAdHocCodeSigning.h"
|
|
|
|
@implementation TestAppHelper
|
|
|
|
- (void)codeSignApplicationAtPath:(NSString *)applicationPath reply:(void (^)(BOOL))reply
|
|
{
|
|
reply([SUAdHocCodeSigning codeSignApplicationAtPath:applicationPath]);
|
|
}
|
|
|
|
@end
|