We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfe832f commit 38bcf71Copy full SHA for 38bcf71
makefile
@@ -15,6 +15,9 @@ check:
15
16
.PHONY: client
17
client:
18
+ifeq ($(OS),Windows_NT)
19
+ @echo "Please generate client on macOS or Linux, currently unsupported on windows."
20
+else
21
# Versions from https://github.com/OpenAPITools/openapi-generator/releases
22
@chmod +x ./openapi-generator
23
@rm -rf ./client
@@ -23,11 +26,16 @@ client:
26
go fmt ./...
24
27
go build github.com/moov-io/fed/client
25
28
go test ./client
29
+endif
30
31
.PHONY: clean
32
clean:
33
34
+ @echo "Skipping cleanup on Windows, currently unsupported."
35
36
@rm -rf ./bin/
37
@rm -f openapi-generator-cli-*.jar
38
39
40
dist: clean client build
41
ifeq ($(OS),Windows_NT)
0 commit comments