├── README.md └── SwiftCommandLineTool ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── SwiftCommandLineTool │ ├── IpaTool.swift │ ├── Process.swift │ └── main.swift └── Tests └── SwiftCommandLineToolTests └── SwiftCommandLineToolTests.swift /README.md: -------------------------------------------------------------------------------- 1 | # SwiftCommandLineTool 2 | Swift写的一个自动打包ipa,并上传蒲公英 3 | https://juejin.cn/post/6970958512557916190 4 | -------------------------------------------------------------------------------- /SwiftCommandLineTool/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Package.resolved -------------------------------------------------------------------------------- /SwiftCommandLineTool/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Package.swift -------------------------------------------------------------------------------- /SwiftCommandLineTool/README.md: -------------------------------------------------------------------------------- 1 | # SwiftCommandLineTool 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /SwiftCommandLineTool/Sources/SwiftCommandLineTool/IpaTool.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Sources/SwiftCommandLineTool/IpaTool.swift -------------------------------------------------------------------------------- /SwiftCommandLineTool/Sources/SwiftCommandLineTool/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Sources/SwiftCommandLineTool/Process.swift -------------------------------------------------------------------------------- /SwiftCommandLineTool/Sources/SwiftCommandLineTool/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Sources/SwiftCommandLineTool/main.swift -------------------------------------------------------------------------------- /SwiftCommandLineTool/Tests/SwiftCommandLineToolTests/SwiftCommandLineToolTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WangMingChina/SwiftCommandLineTool/HEAD/SwiftCommandLineTool/Tests/SwiftCommandLineToolTests/SwiftCommandLineToolTests.swift --------------------------------------------------------------------------------