-
Notifications
You must be signed in to change notification settings - Fork 130
Expand file tree
/
Copy pathXCBuildShellScript.m
More file actions
75 lines (61 loc) · 3.01 KB
/
XCBuildShellScript.m
File metadata and controls
75 lines (61 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
//
// XCBuildShellScript.m
// xcode-editor
//
// Created by joel on 03/02/16.
//
//
#import "XCBuildShellScript.h"
#import "NSString+RemoveEmoji.h"
@implementation XCBuildShellScript
//-------------------------------------------------------------------------------------------
#pragma mark - Class Methods
//-------------------------------------------------------------------------------------------
+ (XCBuildShellScript*_Nonnull)shellScriptWithProject:(XCProject *)project
key:(NSString *)key
name:(NSString *)name
files:(NSArray<NSString *> *)files
inputPaths:(NSArray<NSString *> *)inputPaths
outputPaths:(NSArray<NSString *> *)outputPaths
runOnlyForDeploymentPostprocessing:(BOOL)runOnlyForDeploymentPostprocessing
shellPath:(NSString *)shellPath
shellScript:(NSString *)shellScript
{
return [[XCBuildShellScript alloc]initWithProject:project
key:key
name:name
files:files
inputPaths:inputPaths
outputPaths:outputPaths
runOnlyForDeploymentPostprocessing:runOnlyForDeploymentPostprocessing
shellPath:shellPath
shellScript:shellScript];
}
//-------------------------------------------------------------------------------------------
#pragma mark - Initialization & Destruction
//-------------------------------------------------------------------------------------------
- (instancetype _Nonnull)initWithProject:(XCProject *)project
key:(NSString *)key
name:(NSString *)name
files:(NSArray<NSString *> *)files
inputPaths:(NSArray<NSString *> *)inputPaths
outputPaths:(NSArray<NSString *> *)outputPaths
runOnlyForDeploymentPostprocessing:(BOOL)runOnlyForDeploymentPostprocessing
shellPath:(NSString *)shellPath
shellScript:(NSString *)shellScript
{
self = [super init];
if (self) {
_project = project;
_key = key;
_name = [name stringByRemovingEmoji];
_files =files!=nil?files:@[];
_inputPaths = inputPaths!=nil?inputPaths:@[];
_outputPaths = outputPaths!=nil?outputPaths:@[];
_runOnlyForDeploymentPostprocessing = runOnlyForDeploymentPostprocessing;
_shellPath = _shellPath!=nil?_shellPath:@"/bin/sh";
_shellScript = shellScript;
}
return self;
}
@end