• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

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

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


Commit MetaInfo

Revision5fe03cec24f11312c054310ba036679bcf2f7b92 (tree)
Zeit2017-08-12 17:23:23
Autormasakih <masakih@user...>
Commitermasakih

Log Message

変数名を修正

Ändern Zusammenfassung

Diff

--- a/AppBuilderWithGit/Git.swift
+++ b/AppBuilderWithGit/Git.swift
@@ -71,7 +71,7 @@ final class Git {
7171 private func excuteGit(workingURL: URL, args: [String]) throws {
7272
7373 let xcodeURL = NSApplication.appDelegate.xcodeURL
74- guard let builderURL = xcodeURL?.appendingPathComponent("/Contents/Developer/usr/bin/git") else {
74+ guard let gitURL = xcodeURL?.appendingPathComponent("/Contents/Developer/usr/bin/git") else {
7575
7676 throw GitError.other("git is not found.")
7777 }
@@ -83,7 +83,7 @@ final class Git {
8383 }
8484
8585 let git = Process()
86- git.launchPath = builderURL.path
86+ git.launchPath = gitURL.path
8787 git.arguments = args
8888
8989 git.currentDirectoryPath = workingURL.path