File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Documentation.app/Contents/MacOS/Quick start.playground/Pages/Installation guide.xcplaygroundpage Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 29
29
| grep -oP '"tag_name": "\K(.*)(?=")' \
30
30
| xargs -I {} wget -O - https://github.com/bow-swift/bow-openapi/archive/{}.tar.gz \
31
31
| tar xz \
32
- && cd bow-openapi-* \
33
- && sudo make linux
32
+ && sudo make linux -C bow-openapi-*
34
33
```
35
34
36
35
> It will install the last stable version.
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ xcode: macos fixtures
26
26
install :
27
27
@rm -rf ./Tests/Fixtures/FixturesAPI
28
28
@tar -xvf ./Tests/Fixtures/FixturesAPI.tar.gz -C ./Tests/Fixtures/
29
- @swift build --disable-sandbox --configuration release --build-path $(BUILD_PATH ) /build
29
+ @swift build --disable-sandbox --enable-test-discovery -- configuration release --build-path $(BUILD_PATH ) /build
30
30
@install $(BUILD_PATH ) /build/release/$(TOOL_NAME ) $(PREFIX_BIN ) /$(TOOL_NAME )
31
31
@cp -R ./Templates $(RESOURCES_PATH )
32
32
@cp ./Tests/Fixtures/petstore.yaml $(RESOURCES_PATH )
Original file line number Diff line number Diff line change @@ -48,11 +48,10 @@ brew install bow-openapi
48
48
49
49
``` bash
50
50
curl -s https://api.github.com/repos/bow-swift/bow-openapi/releases/latest \
51
- | grep -oP ' "tag_name": "\K(.*)(?=")' \
52
- | xargs -I {} wget -O - https://github.com/bow-swift/bow-openapi/archive/{}.tar.gz \
53
- | tar xz \
54
- && cd bow-openapi-* \
55
- && sudo make linux
51
+ | grep -oP ' "tag_name": "\K(.*)(?=")' \
52
+ | xargs -I {} wget -O - https://github.com/bow-swift/bow-openapi/archive/{}.tar.gz \
53
+ | tar xz \
54
+ && sudo make linux -C bow-openapi-*
56
55
```
57
56
58
57
> It will install the last stable version.
You can’t perform that action at this time.
0 commit comments