mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 14:51:03 +01:00
correct string equal check
This commit is contained in:
parent
34a4c17726
commit
1053c34127
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ while [ ${chainIsReady} -eq 0 ]
|
|||
echo "error(${error})"
|
||||
if [ ${#error} -gt 0 ]; then
|
||||
testnetAdd=""
|
||||
if [ '${chain}' -eq 'test' ]; then
|
||||
if [ "${chain}" = "test" ]; then
|
||||
testnetAdd="testnet3/"
|
||||
fi
|
||||
sudo tail -n 5 /mnt/hdd/bitcoin/${testnetAdd}debug.log
|
||||
|
|
Loading…
Add table
Reference in a new issue