mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-23 22:47:03 +01:00
fix(bitcon.update): unary operator expected (#3365)
* fix(bitcon.update): unary operator expected * Update home.admin/config.scripts/bitcoin.update.sh Co-authored-by: openoms <43343391+openoms@users.noreply.github.com>
This commit is contained in:
parent
5c1da4f19c
commit
3a25872f26
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ if [ "${mode}" = "tested" ]||[ "${mode}" = "reckless" ]||[ "${mode}" = "custom"
|
|||
|
||||
displayInfo
|
||||
|
||||
if [ $installedVersion = $bitcoinVersion ];then
|
||||
if [ "$installedVersion" = "$bitcoinVersion" ]; then
|
||||
echo "# installedVersion = bitcoinVersion"
|
||||
echo "# exiting script"
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Reference in a new issue