File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ public final class UBKit {
45
45
}
46
46
47
47
let workingPath = fileManager. currentDirectoryPath. appending ( " / " )
48
- if arg != . initialize {
48
+ if arg != . config {
49
49
guard let fileData = fileManager. contents ( atPath: workingPath. appending ( " ubconfig.json " ) ) else {
50
50
completion ( UBKitError . invalidFolder ( workingPath. appending ( " ubconfig.json " ) ) )
51
51
return
@@ -63,8 +63,6 @@ public final class UBKit {
63
63
switch arg {
64
64
case . config:
65
65
createConfiguration ( workingPath: workingPath, completion)
66
- case . initialize:
67
- break
68
66
case . generate:
69
67
generate ( manager: kitManager, completion)
70
68
}
@@ -85,7 +83,6 @@ private extension UBKit {
85
83
86
84
enum Argument : String {
87
85
case config
88
- case initialize = " init "
89
86
case generate
90
87
}
91
88
You can’t perform that action at this time.
0 commit comments