fix(git): remove bin folder from git ignore list
This commit is contained in:
parent
46658f3838
commit
c735e66a1c
|
@ -25,7 +25,6 @@ _testmain.go
|
||||||
|
|
||||||
gin-bin
|
gin-bin
|
||||||
key.pem
|
key.pem
|
||||||
bin
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
gorush/log/*.log
|
gorush/log/*.log
|
||||||
gorush.db
|
gorush.db
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -98,8 +98,8 @@ install: $(SOURCES)
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
|
|
||||||
# build from source
|
# build from source
|
||||||
build: $(EXECUTABLE)
|
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
|
build: $(EXECUTABLE)
|
||||||
|
|
||||||
$(EXECUTABLE): $(SOURCES)
|
$(EXECUTABLE): $(SOURCES)
|
||||||
$(GO) build -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)' -o release/$@
|
$(GO) build -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)' -o release/$@
|
||||||
|
@ -202,7 +202,7 @@ clean:
|
||||||
find . -name coverage.txt -delete
|
find . -name coverage.txt -delete
|
||||||
find . -name *.tar.gz -delete
|
find . -name *.tar.gz -delete
|
||||||
find . -name *.db -delete
|
find . -name *.db -delete
|
||||||
-rm -rf bin dist .cover
|
-rm -rf release dist .cover
|
||||||
|
|
||||||
rpc/example/node/gorush_*_pb.js: rpc/proto/gorush.proto
|
rpc/example/node/gorush_*_pb.js: rpc/proto/gorush.proto
|
||||||
protoc -I rpc/proto rpc/proto/gorush.proto --js_out=import_style=commonjs,binary:rpc/example/node/ --grpc_out=rpc/example/node/ --plugin=protoc-gen-grpc=$(NODE_PROTOC_PLUGIN)
|
protoc -I rpc/proto rpc/proto/gorush.proto --js_out=import_style=commonjs,binary:rpc/example/node/ --grpc_out=rpc/example/node/ --plugin=protoc-gen-grpc=$(NODE_PROTOC_PLUGIN)
|
||||||
|
|
Loading…
Reference in New Issue