Skip to content

Commit ec8f37b

Browse files
committed
Make the build commands less verbose.
1 parent 7279202 commit ec8f37b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ else
66
endif
77

88
all:
9-
swift build -v $(CFLAGS)
9+
swift build $(CFLAGS)
1010
cp .build/debug/protoc-gen-swift .
1111
cp .build/debug/protoc-gen-swiftgrpc .
1212

1313
project:
14-
swift package -v $(CFLAGS) generate-xcodeproj
14+
swift package $(CFLAGS) generate-xcodeproj
1515
@-ruby fix-project-settings.rb || echo "Consider running 'sudo gem install xcodeproj' to automatically set correct indentation settings for the generated project."
1616

1717
test: all
18-
swift test -v $(CFLAGS)
18+
swift test $(CFLAGS)
1919

2020
test-echo: all
2121
cp .build/debug/Echo .
@@ -28,7 +28,7 @@ test-echo: all
2828
diff -u test.out Sources/Examples/Echo/test.gold
2929

3030
test-plugin:
31-
swift build -v $(CFLAGS) --product protoc-gen-swiftgrpc
31+
swift build $(CFLAGS) --product protoc-gen-swiftgrpc
3232
protoc Sources/Examples/Echo/echo.proto --proto_path=Sources/Examples/Echo --plugin=.build/debug/protoc-gen-swift --plugin=.build/debug/protoc-gen-swiftgrpc --swiftgrpc_out=/tmp --swiftgrpc_opt=TestStubs=true
3333
diff -u /tmp/echo.grpc.swift Sources/Examples/Echo/Generated/echo.grpc.swift
3434

0 commit comments

Comments
 (0)