Merge pull request #5178 from halseth/mobile-docker-prefix
make: pass mobile subserver prefix to docker when generating mobile RPC
This commit is contained in:
commit
d1c7059f14
4
Makefile
4
Makefile
@ -282,8 +282,8 @@ sample-conf-check:
|
||||
for flag in $$(GO_FLAGS_COMPLETION=1 go run -tags="$(RELEASE_TAGS)" $(PKG)/cmd/lnd -- | grep -v help | cut -c3-); do if ! grep -q $$flag sample-lnd.conf; then echo "Command line flag --$$flag not added to sample-lnd.conf"; exit 1; fi; done
|
||||
|
||||
mobile-rpc:
|
||||
@$(call print, "Creating mobile RPC from protos.")
|
||||
cd ./lnrpc; COMPILE_MOBILE=1 ./gen_protos_docker.sh
|
||||
@$(call print, "Creating mobile RPC from protos (prefix=$(prefix)).")
|
||||
cd ./lnrpc; COMPILE_MOBILE=1 SUBSERVER_PREFIX=$(prefix) ./gen_protos_docker.sh
|
||||
|
||||
vendor:
|
||||
@$(call print, "Re-creating vendor directory.")
|
||||
|
@ -20,5 +20,6 @@ docker run \
|
||||
--user "$UID:$(id -g)" \
|
||||
-e UID=$UID \
|
||||
-e COMPILE_MOBILE \
|
||||
-e SUBSERVER_PREFIX \
|
||||
-v "$DIR/../:/build" \
|
||||
lnd-protobuf-builder
|
||||
|
@ -57,7 +57,7 @@ done
|
||||
# If prefix=1 is specified, prefix the generated methods with subserver name.
|
||||
# This must be enabled to support subservers with name conflicts.
|
||||
use_prefix="0"
|
||||
if [ "$prefix" = "1" ]
|
||||
if [ "$SUBSERVER_PREFIX" = "1" ]
|
||||
then
|
||||
echo "Prefixing methods with subserver name"
|
||||
use_prefix="1"
|
||||
|
Loading…
Reference in New Issue
Block a user