mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-03 17:26:57 +01:00
mobile: use single brackets for bash if check
Double brackets are sh specific.
This commit is contained in:
parent
d41ca81aad
commit
39241dcdc7
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ protoc -I/usr/local/include -I. \
|
|||
# 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 [ "$prefix" = "1" ]
|
||||
then
|
||||
echo "Prefixing methods with subserver name"
|
||||
use_prefix="1"
|
||||
|
|
Loading…
Add table
Reference in a new issue