File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ All installed! You can now use `gen-ir` on your system - be sure to run `gen-ir
6060``` bash
6161# Path to build log (you can export from inside of Xcode too)
6262xcodebuild clean && \
63- xcodebuild build -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt
63+ xcodebuild archive -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive > build_log.txt
6464
65- gen-ir build_log.txt TestProject.xcarchive --project-path TestProject.xcodeproj
65+ gen-ir build_log.txt TestProject.xcarchive
6666
6767# Stdin (you may need to redirect stderr to stdout here, Xcode is weird about writing to it sometimes)
6868xcodebuild clean && \
69- xcodebuild build -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive | gen-ir - TestProject.xcarchive --project-path TestProject.xcodeproj
69+ xcodebuild archive -project TestProject.xcodeproj -scheme TestProject -configuration Debug -destination generic/platform=iOS -archivePath TestProject.xcarchive | gen-ir - TestProject.xcarchive
7070```
7171
7272## Building
@@ -86,6 +86,6 @@ swift build -c release
8686If you previously installed the test version during early access testing, run the following commands to remove the test version from your system before installing:
8787
8888 ``` sh
89- brew uninstall gen-ir &&
90- brew untap NinjaLikesCheez/tap
91- ```
89+ brew uninstall gen-ir &&
90+ brew untap NinjaLikesCheez/tap
91+ ```
Original file line number Diff line number Diff line change 88import Foundation
99
1010enum Versions {
11- static let version = " 0.5.0-beta "
11+ static let version = " 0.5.0 "
1212}
You can’t perform that action at this time.
0 commit comments