masakih

AppBuilderWithGit

  • R/O
  • HTTP
  • SSH
  • HTTPS

コミット

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

gitリポジトリのurlを貼り付けるだけでアプリケーションのビルドを実行するアプリ。 macOS用


コミットメタ情報

リビジョンba280063861c4345dcaedcba441c8600a24651d6 (tree)
日時2018-04-07 00:45:52
作者masakih <masakih@user...>
コミッターmasakih

ログメッセージ

文字列を直接ログに書き込めるようにした

変更サマリ

差分

--- a/AppBuilderWithGit/LogStocker.swift
+++ b/AppBuilderWithGit/LogStocker.swift
@@ -71,4 +71,12 @@ final class LogStocker {
7171 }
7272 }
7373
74+ func write(_ string: String) {
75+
76+ DispatchQueue.global().async {
77+
78+ self.output.write(string.data(using: .utf8) ?? Data())
79+ }
80+ }
81+
7482 }