mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-24 22:58:43 +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})"
|
echo "error(${error})"
|
||||||
if [ ${#error} -gt 0 ]; then
|
if [ ${#error} -gt 0 ]; then
|
||||||
testnetAdd=""
|
testnetAdd=""
|
||||||
if [ '${chain}' -eq 'test' ]; then
|
if [ "${chain}" = "test" ]; then
|
||||||
testnetAdd="testnet3/"
|
testnetAdd="testnet3/"
|
||||||
fi
|
fi
|
||||||
sudo tail -n 5 /mnt/hdd/bitcoin/${testnetAdd}debug.log
|
sudo tail -n 5 /mnt/hdd/bitcoin/${testnetAdd}debug.log
|
||||||
|
|
Loading…
Add table
Reference in a new issue