Browse Source

Merge pull request #166 from MrMage/ignore-build-outputs

Add the new protobuf plugin binaries to .gitignore and to `make clean`
Tim Burks 7 years ago
parent
commit
72d155e98c
2 changed files with 3 additions and 0 deletions
  1. 2 0
      .gitignore
  2. 1 0
      Makefile

+ 2 - 0
.gitignore

@@ -2,6 +2,8 @@
 project.xcworkspace
 xcuserdata
 .build
+protoc-gen-swift
+protoc-gen-swiftgrpc
 third_party/**
 Plugin/Packages/**
 Plugin/Sources/protoc-gen-swiftgrpc/templates.swift

+ 1 - 0
Makefile

@@ -25,5 +25,6 @@ clean:
 	rm -rf .build
 	rm -rf SwiftGRPC.xcodeproj
 	rm -rf Package.pins Package.resolved
+	rm -rf protoc-gen-swift protoc-gen-swiftgrpc
 	cd Examples/Echo/PackageManager; make clean
 	cd Examples/Simple/PackageManager; make clean