gitリポジトリのurlを貼り付けるだけでアプリケーションのビルドを実行するアプリ。 macOS用
修订版 | f7d535eb14b789632e60c4cd268ad055760082aa (tree) |
---|---|
时间 | 2018-04-07 23:37:10 |
作者 | masakih <masakih@user...> |
Commiter | masakih |
typoを修正
@@ -139,7 +139,7 @@ final class Git { | ||
139 | 139 | try excuteGit(workingURL: workingURL, args: args) |
140 | 140 | } |
141 | 141 | |
142 | - private func pul() throws { | |
142 | + private func pull() throws { | |
143 | 143 | |
144 | 144 | let workingURL = ApplicationDirecrories.support.appendingPathComponent(repositoryName) |
145 | 145 |
@@ -152,7 +152,7 @@ final class Git { | ||
152 | 152 | |
153 | 153 | do { |
154 | 154 | |
155 | - try pul() | |
155 | + try pull() | |
156 | 156 | |
157 | 157 | try submoduleUpdate() |
158 | 158 |