Skip to content

Commit 4e2176e

Browse files
committed
Merge branch 'master' of github.com:modulo-dm/modulo
# Conflicts: # ModuloKit/Modulo.swift
2 parents 8da0556 + db3a9d0 commit 4e2176e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ModuloKit/Modulo.swift

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,29 @@ import Foundation
1616

1717
@objc
1818
open class Modulo: NSObject {
19-
19+
2020
public static func run() {
2121
let error = run([])
2222
exit(Int32(error.rawValue))
2323
}
24-
24+
2525
public static func run(_ args: [String]) -> ErrorCode {
2626
let cli = CLI(name: "modulo", version: "0.6.4", description: "A simple dependency manager")
27-
27+
2828
if args.count > 0 {
2929
cli.allArgumentsToExecutable = args
3030
}
31-
31+
3232
cli.addCommands([InitCommand(), AddCommand(), UpdateCommand(), StatusCommand(), MapCommand(), SetCommand()])
33-
33+
3434
if let error = ErrorCode(rawValue: cli.run()) {
3535
if error == .success {
3636
State.instance.showFinalInformation()
3737
}
38-
38+
3939
return error
4040
}
41-
41+
4242
return ErrorCode.unknownError
4343
}
4444
}

0 commit comments

Comments
 (0)