You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+4
Original file line number
Diff line number
Diff line change
@@ -254,6 +254,10 @@ rpc-check: rpc
254
254
forrpcin$$(find lnrpc/ -name "*.proto"|$(XARGS) awk '/ rpc /{print $$2}');doif! grep -q $$rpc lnrpc/rest-annotations.yaml;thenecho"RPC $$rpc not added to lnrpc/rest-annotations.yaml";exit 1;fi;done
255
255
iftest -n "$$(git describe --dirty | grep dirty)";thenecho"Protos not properly formatted or not compiled with v3.4.0"; git status; git diff;exit 1;fi
256
256
257
+
sample-conf-check:
258
+
@$(call print, "Making sure every flag has an example in the sample-lnd.conf file")
259
+
forflagin$$(GO_FLAGS_COMPLETION=1 go run -tags="$(RELEASE_TAGS)"$(PKG)/cmd/lnd -- | grep -v help| cut -c3-);doif! grep -q $$flag sample-lnd.conf;thenecho"Command line flag --$$flag not added to sample-lnd.conf";exit 1;fi;done
260
+
257
261
mobile-rpc: falafel goimports
258
262
@$(call print, "Creating mobile RPC from protos.")
0 commit comments